Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/magento/module-directory/Model/Country/Postcode/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-directory/Model/Country/Postcode/ValidatorInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Directory\Model\Country\Postcode;

/**
 * Interface \Magento\Directory\Model\Country\Postcode\ValidatorInterface
 *
 * @api
 */
interface ValidatorInterface
{
    /**
     * Validate postcode for selected country by mask
     *
     * @param string $postcode
     * @param string $countryId
     * @return bool
     * @throws \InvalidArgumentException
     */
    public function validate($postcode, $countryId);
}