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