@@ -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)) { |
@@ -20,6 +20,6 @@ |
||
20 | 20 | Logger::DEBUG |
21 | 21 | ] |
22 | 22 | ] |
23 | - */ |
|
23 | + */ |
|
24 | 24 | ] |
25 | 25 | ]; |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | /** |
173 | 173 | * Getter to access to the errors instance |
174 | 174 | * |
175 | - * @return \BFW\Errors |
|
175 | + * @return Core\Errors |
|
176 | 176 | */ |
177 | 177 | public function getErrors() |
178 | 178 | { |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | /** |
235 | 235 | * Getter to access to the options system |
236 | 236 | * |
237 | - * @return mixed |
|
237 | + * @return Core\Options |
|
238 | 238 | */ |
239 | 239 | public function getOptions() |
240 | 240 | { |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | * |
277 | 277 | * @param array $options Options passed to application |
278 | 278 | * |
279 | - * @return void |
|
279 | + * @return Application |
|
280 | 280 | */ |
281 | 281 | public function initSystem($options) |
282 | 282 | { |
@@ -705,7 +705,7 @@ discard block |
||
705 | 705 | /** |
706 | 706 | * List all tasks runned by ctrlRouterLink |
707 | 707 | * |
708 | - * @return array |
|
708 | + * @return \stdClass[] |
|
709 | 709 | */ |
710 | 710 | protected function obtainCtrlRouterLinkTasks() |
711 | 711 | { |