1 | <?php |
||
22 | class Module implements |
||
23 | BootstrapListenerInterface, |
||
24 | ControllerProviderInterface, |
||
25 | ConfigProviderInterface, |
||
26 | DependencyIndicatorInterface |
||
27 | { |
||
28 | /** |
||
29 | * {@inheritDoc} |
||
30 | */ |
||
31 | public function init(ModuleManagerInterface $manager) |
||
38 | |||
39 | /** |
||
40 | * Initialize the Doctrine console |
||
41 | * |
||
42 | * @param EventInterface |
||
43 | */ |
||
44 | public function initializeConsole(EventInterface $event) |
||
50 | |||
51 | /** |
||
52 | * {@inheritDoc} |
||
53 | */ |
||
54 | public function onBootstrap(EventInterface $event) |
||
72 | |||
73 | 72 | /** |
|
74 | * {@inheritDoc} |
||
75 | */ |
||
76 | public function getConfig() |
||
80 | |||
81 | /** |
||
82 | * {@inheritDoc} |
||
83 | */ |
||
84 | public function getControllerConfig() |
||
88 | |||
89 | /** |
||
90 | * {@inheritDoc} |
||
91 | */ |
||
92 | public function getModuleDependencies() |
||
96 | } |
||
97 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.