| Current Path : /var/www/html/vendor/magento/module-customer/Model/Address/Validator/ |
| Current File : /var/www/html/vendor/magento/module-customer/Model/Address/Validator/Postcode.php |
<?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);
}
}