| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | interface ConfigInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @param string $fileName |
||
| 12 | * @param LoggerInterface $logger |
||
| 13 | */ |
||
| 14 | public function loadFromFile($fileName, LoggerInterface $logger); |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param array $array |
||
| 18 | * @param LoggerInterface $logger |
||
| 19 | */ |
||
| 20 | public function loadFromArray($array, LoggerInterface $logger); |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return array<string, ActionAbstract[]> |
||
|
|
|||
| 24 | */ |
||
| 25 | public function getAllEventActions(); |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $event |
||
| 29 | * @param bool $supportedOnly |
||
| 30 | * |
||
| 31 | * @return ActionAbstract[] |
||
| 32 | */ |
||
| 33 | public function getActionsForEvent($event, $supportedOnly = true); |
||
| 34 | } |
||
| 35 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.