Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Config.php
Go to the documentation of this file.
1 <?php
7 
8 class Config implements ConfigInterface
9 {
13  protected $dataStorage;
14 
18  public function __construct(\Magento\Directory\Model\Country\Postcode\Config\Data $dataStorage)
19  {
20  $this->dataStorage = $dataStorage;
21  }
22 
26  public function getPostCodes()
27  {
28  return $this->dataStorage->get();
29  }
30 }
__construct(\Magento\Directory\Model\Country\Postcode\Config\Data $dataStorage)
Definition: Config.php:18