1 | <?php |
||
28 | abstract class AbstractContainerAwareCommand extends ContainerAwareCommand { |
||
|
|||
29 | |||
30 | /** |
||
31 | * Get the event dispatcher. |
||
32 | * |
||
33 | * @return EventDispatcherInterface Returns the event dispatcher. |
||
34 | * @throws ServiceCircularReferenceException Throws a service circular exception when a circular reference is detected. |
||
35 | * @throws ServiceNotFoundException Throws a service not found hen the service is not defined. |
||
36 | */ |
||
37 | protected function getEventDispatcher() { |
||
40 | |||
41 | /** |
||
42 | * Get the logger. |
||
43 | * |
||
44 | * @return LoggerInterface Returns the logger. |
||
45 | * @throws ServiceCircularReferenceException Throws a service circular exception when a circular reference is detected. |
||
46 | * @throws ServiceNotFoundException Throws a service not found hen the service is not defined. |
||
47 | */ |
||
48 | protected function getLogger() { |
||
51 | |||
52 | /** |
||
53 | * Get the router. |
||
54 | * |
||
55 | * @return RouterInterface Returns the router. |
||
56 | * @throws ServiceCircularReferenceException Throws a service circular exception when a circular reference is detected. |
||
57 | * @throws ServiceNotFoundException Throws a service not found hen the service is not defined. |
||
58 | */ |
||
59 | protected function getRouter() { |
||
62 | |||
63 | /** |
||
64 | * Get the translator. |
||
65 | * |
||
66 | * @return TranslatorInterface Returns the translator. |
||
67 | * @throws ServiceCircularReferenceException Throws a service circular exception when a circular reference is detected. |
||
68 | * @throws ServiceNotFoundException Throws a service not found hen the service is not defined. |
||
69 | */ |
||
70 | protected function getTranslator() { |
||
73 | } |
||
74 |
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.