1 | <?php |
||
12 | abstract class AbstractConfigurationHandler implements ConfigurationHandlerInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $key; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | 9 | public function setKey($key) |
|
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | 8 | protected function getKey() |
|
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | abstract public function get($value); |
||
39 | } |
||
40 |