1234567891011121314151617181920212223 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Directory\Model\Country\Postcode;
- /**
- * Interface \Magento\Directory\Model\Country\Postcode\ValidatorInterface
- *
- */
- interface ValidatorInterface
- {
- /**
- * Validate postcode for selected country by mask
- *
- * @param string $postcode
- * @param string $countryId
- * @return bool
- * @throws \InvalidArgumentException
- */
- public function validate($postcode, $countryId);
- }
|