@@ -199,7 +199,7 @@ |
||
199 | 199 | * End "en" (preference 0.4/1) |
200 | 200 | **/ |
201 | 201 | |
202 | - $acceptLanguage = $this->serverValue('HTTP_ACCEPT_LANGUAGE'); |
|
202 | + $acceptLanguage = $this->serverValue('HTTP_ACCEPT_LANGUAGE'); |
|
203 | 203 | if (empty($acceptLanguage)) { |
204 | 204 | $this->lang = ''; |
205 | 205 | return; |
@@ -505,7 +505,7 @@ |
||
505 | 505 | */ |
506 | 506 | protected function removeRecursiveDirectory($dirPath) |
507 | 507 | { |
508 | - $fileList = array_diff(scandir($dirPath), ['.','..']); |
|
508 | + $fileList = array_diff(scandir($dirPath), ['.', '..']); |
|
509 | 509 | |
510 | 510 | foreach ($fileList as $filePath) { |
511 | 511 | if (is_dir($filePath)) { |
@@ -153,7 +153,7 @@ |
||
153 | 153 | /** |
154 | 154 | * Get accessor to the install script file or list |
155 | 155 | * |
156 | - * @return string|array |
|
156 | + * @return string|boolean |
|
157 | 157 | */ |
158 | 158 | public function getSourceInstallScript() |
159 | 159 | { |
@@ -20,6 +20,6 @@ |
||
20 | 20 | Logger::DEBUG |
21 | 21 | ] |
22 | 22 | ] |
23 | - */ |
|
23 | + */ |
|
24 | 24 | ] |
25 | 25 | ]; |
@@ -180,7 +180,7 @@ |
||
180 | 180 | * |
181 | 181 | * @param array $options Options passed to application |
182 | 182 | * |
183 | - * @return void |
|
183 | + * @return Application |
|
184 | 184 | */ |
185 | 185 | public function initSystems($options) |
186 | 186 | { |
@@ -63,7 +63,7 @@ |
||
63 | 63 | /** |
64 | 64 | * List all tasks runned by ctrlRouterLink |
65 | 65 | * |
66 | - * @return array |
|
66 | + * @return \stdClass[] |
|
67 | 67 | */ |
68 | 68 | protected function obtainCtrlRouterLinkTasks() |
69 | 69 | { |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * Getter accessor to property listToInstall |
27 | 27 | * |
28 | - * @return type |
|
28 | + * @return \BFW\Install\ModuleInstall[] |
|
29 | 29 | */ |
30 | 30 | public function getListToInstall() |
31 | 31 | { |
@@ -72,7 +72,7 @@ |
||
72 | 72 | /** |
73 | 73 | * Securise a variable |
74 | 74 | * |
75 | - * @param mixed $data The variable to securise |
|
75 | + * @param string $data The variable to securise |
|
76 | 76 | * @param string $type The type of datas |
77 | 77 | * @param boolean $htmlentities If use htmlentities function |
78 | 78 | * to a better security |