1 | <?php |
||
11 | class Application extends \BFW\Application |
||
12 | { |
||
13 | /** |
||
14 | * @var \BFW\Install\ModuleInstall[] $modulesInstall Modules to install |
||
15 | */ |
||
16 | protected static $modulesInstall = []; |
||
17 | |||
18 | /** |
||
19 | * Getter to static property modulesInstall |
||
20 | * |
||
21 | * @return \BFW\Install\ModuleInstall[] |
||
22 | */ |
||
23 | public static function getModulesInstall() |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | protected function initRequest() |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | protected function initSession() |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | protected function initErrors() |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | protected function initCli() |
||
59 | |||
60 | /** |
||
61 | * Add a new module in the list to install |
||
62 | * |
||
63 | * @param \BFW\Install\ModuleInstall $module |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | public static function addModuleInstall(ModuleInstall $module) |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | protected function declareRunSteps() |
||
85 | |||
86 | /** |
||
87 | * {@inheritdoc} |
||
88 | */ |
||
89 | public function run() |
||
97 | |||
98 | /** |
||
99 | * Install all modules in the order of the dependency tree. |
||
100 | * |
||
101 | * @return void |
||
102 | */ |
||
103 | protected function installAllModules() |
||
123 | |||
124 | /** |
||
125 | * Install a module |
||
126 | * |
||
127 | * @param string $moduleName The module name |
||
128 | * |
||
129 | * @return void |
||
130 | */ |
||
131 | protected function installModule($moduleName) |
||
155 | } |
||
156 |
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.