1 | <?php |
||
19 | class CliFactory implements FactoryInterface |
||
|
|||
20 | { |
||
21 | /** @var EventManagerInterface */ |
||
22 | protected $events; |
||
23 | |||
24 | /** @var HelperSet */ |
||
25 | protected $helperSet; |
||
26 | |||
27 | /** @var mixed[] */ |
||
28 | protected $commands = []; |
||
29 | |||
30 | public function getEventManager(ContainerInterface $container) : EventManagerInterface |
||
42 | |||
43 | /** |
||
44 | * {@inheritDoc} |
||
45 | * |
||
46 | * @return Application |
||
47 | */ |
||
48 | public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) |
||
61 | |||
62 | /** |
||
63 | * {@inheritDoc} |
||
64 | * |
||
65 | * @return Application |
||
66 | */ |
||
67 | public function createService(ServiceLocatorInterface $container) |
||
71 | } |
||
72 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.