| Current Path : /home/rtorresani/www/vendor/magento/module-directory/Model/Country/Postcode/ |
| 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);
}