| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class Config |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var \Magento\Framework\App\Config\ScopeConfigInterface |
||
| 13 | */ |
||
| 14 | protected $scopeConfig; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Config constructor. |
||
| 18 | * |
||
| 19 | * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig |
||
| 20 | */ |
||
| 21 | public function __construct(\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig) |
||
| 22 | { |
||
| 23 | $this->scopeConfig = $scopeConfig; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | public function getConfig() |
||
| 32 | } |
||
| 33 | } |