1 | <?php |
||
19 | abstract class ConfigAbstract |
||
20 | { |
||
21 | /** |
||
22 | * @var \Shopware_Components_Config |
||
23 | */ |
||
24 | private $config; |
||
25 | |||
26 | /** |
||
27 | * @param \Shopware_Components_Config $config |
||
28 | */ |
||
29 | public function __construct(\Shopware_Components_Config $config) |
||
33 | |||
34 | /** |
||
35 | * @param string $key |
||
36 | * |
||
37 | * @return mixed |
||
38 | */ |
||
39 | protected function pluginConfig($key) |
||
43 | } |
||
44 |