1 | <?php |
||
9 | class Config implements ConfigInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $config = []; |
||
15 | |||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | 1 | public function loadFromFile($fileName, LoggerInterface $logger) |
|
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | 4 | public function loadFromArray($array, LoggerInterface $logger) |
|
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | 1 | public function getAllEventActions() |
|
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | 4 | public function getActionsForEvent($event, $supportedOnly = true) |
|
69 | |||
70 | /** |
||
71 | * @param ActionAbstract $action |
||
72 | * @param LoggerInterface $logger |
||
73 | */ |
||
74 | 3 | private function setUpAction(ActionAbstract $action, LoggerInterface $logger) |
|
84 | } |
||
85 |