12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Model\Address\Validator;
- class Postcode
- {
- /**
- * @var \Magento\Directory\Helper\Data
- */
- protected $directoryHelper;
- /**
- * @param \Magento\Directory\Helper\Data $directoryHelper
- */
- public function __construct(\Magento\Directory\Helper\Data $directoryHelper)
- {
- $this->directoryHelper = $directoryHelper;
- }
- /**
- * Check if postcode is valid
- *
- * @param string $countryId
- * @param string $postcode
- * @return bool
- */
- public function isValid($countryId, $postcode)
- {
- return $this->directoryHelper->isZipCodeOptional($countryId) || !empty($postcode);
- }
- }
|