1 | <?php |
||
19 | class EntryNameResolverManager extends AbstractPluginManager implements EntryNameResolverManagerInterface |
||
20 | { |
||
21 | /** |
||
22 | * Имя секции в конфиги приложения отвечающей за настройки менеджера |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | const CONFIG_KEY = 'nnx_entry_name_resolver'; |
||
27 | |||
28 | /** |
||
29 | * EntryNameResolverManager constructor. |
||
30 | * |
||
31 | * @param null|ConfigInterface $configuration |
||
32 | * |
||
33 | * @throws \Zend\ServiceManager\Exception\RuntimeException |
||
34 | */ |
||
35 | public function __construct(ConfigInterface $configuration = null) |
||
40 | |||
41 | |||
42 | /** |
||
43 | * {@inheritDoc} |
||
44 | * |
||
45 | * @throws Exception\RuntimeException |
||
46 | */ |
||
47 | public function validatePlugin($plugin) |
||
59 | } |
||
60 |