Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Validatevat.php
Go to the documentation of this file.
1 <?php
7 
14 {
20  const ADMIN_RESOURCE = 'Magento_Customer::manage';
21 
27  protected function _validate()
28  {
29  return $this->_objectManager->get(\Magento\Customer\Model\Vat::class)
30  ->checkVatNumber(
31  $this->getRequest()->getParam('country'),
32  $this->getRequest()->getParam('vat')
33  );
34  }
35 }