@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | public function __invoke(ViewController $view, string $block, string $defaultValue = '') |
27 | 27 | { |
28 | - if($view->getVariable($block) === '') { |
|
28 | + if ($view->getVariable($block) === '') { |
|
29 | 29 | return $defaultValue; |
30 | 30 | } |
31 | 31 | return trim($view->getVariable($block)); |
@@ -11,8 +11,6 @@ |
||
11 | 11 | use Faulancer\Service\Config; |
12 | 12 | use Faulancer\Service\SessionManagerService; |
13 | 13 | use Faulancer\ServiceLocator\ServiceLocator; |
14 | -use Faulancer\Session\SessionManager; |
|
15 | -use Symfony\Component\EventDispatcher\Tests\Service; |
|
16 | 14 | |
17 | 15 | /** |
18 | 16 | * Class Translator |
@@ -45,7 +45,7 @@ |
||
45 | 45 | protected function triggerRedirect($location = '/', $code = 301) |
46 | 46 | { |
47 | 47 | header('HTTP/2 ' . $code . ' ' . Response::HTTP_STATUS_CODES[$code]); |
48 | - header('Location: ' . $location); |
|
48 | + header('Location: ' . $location); |
|
49 | 49 | |
50 | 50 | exit(0); |
51 | 51 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * |
21 | 21 | * @param string $location The path as string |
22 | 22 | * @param integer $code The status code |
23 | - * @return mixed |
|
23 | + * @return boolean |
|
24 | 24 | * @throws InvalidArgumentException |
25 | 25 | */ |
26 | 26 | public function redirect(string $location, int $code = 301) |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
132 | - * @param $file |
|
132 | + * @param string $file |
|
133 | 133 | * @return string |
134 | 134 | * @codeCoverageIgnore |
135 | 135 | */ |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |
144 | - * @param $file |
|
144 | + * @param string $file |
|
145 | 145 | * @return string |
146 | 146 | * @codeCoverageIgnore |
147 | 147 | */ |
@@ -13,7 +13,6 @@ |
||
13 | 13 | use Faulancer\Http\Request; |
14 | 14 | use Faulancer\Http\Response; |
15 | 15 | use Faulancer\Exception\MethodNotFoundException; |
16 | -use Faulancer\Service\AuthenticatorPlugin; |
|
17 | 16 | use Faulancer\Service\AuthenticatorService; |
18 | 17 | use Faulancer\Service\Config; |
19 | 18 | use Faulancer\Service\SessionManagerService; |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | list($class, $action, $permission, $payload) = $this->getRoute($this->request->getPath()); |
84 | 84 | |
85 | 85 | /** @var AbstractController $class */ |
86 | - $class = new $class($this->request); |
|
86 | + $class = new $class($this->request); |
|
87 | 87 | |
88 | 88 | if (!empty($permission)) { |
89 | 89 | |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | |
334 | 334 | array_splice($var, 0, 1); |
335 | 335 | |
336 | - if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) { |
|
336 | + if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) { |
|
337 | 337 | |
338 | 338 | return [ |
339 | 339 | $data['controller'], |
@@ -76,7 +76,7 @@ |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * @param $request |
|
79 | + * @param Request $request |
|
80 | 80 | * @param $e |
81 | 81 | * @return Http\Response |
82 | 82 | * @codeCoverageIgnore |
@@ -58,7 +58,7 @@ |
||
58 | 58 | foreach ($definition['options'] as $val => $text) { |
59 | 59 | |
60 | 60 | $selected = $isSelected($val) === true ? ' selected="selected"' : ''; |
61 | - $option = '<option value="' . $val .'"%s>' . $text . '</option>'; |
|
61 | + $option = '<option value="' . $val . '"%s>' . $text . '</option>'; |
|
62 | 62 | |
63 | 63 | $output .= sprintf($option, $selected); |
64 | 64 |
@@ -31,8 +31,8 @@ |
||
31 | 31 | $subview->setTemplatePath($view->getTemplatePath()); |
32 | 32 | } |
33 | 33 | |
34 | - $subview->setTemplate( $template ); |
|
35 | - $subview->setVariables( $variables ); |
|
34 | + $subview->setTemplate($template); |
|
35 | + $subview->setVariables($variables); |
|
36 | 36 | return $subview->render(); |
37 | 37 | } |
38 | 38 |
@@ -153,7 +153,7 @@ |
||
153 | 153 | */ |
154 | 154 | public function setBody($body) |
155 | 155 | { |
156 | - $this->body = $body; |
|
156 | + $this->body = $body; |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -248,7 +248,7 @@ |
||
248 | 248 | * @return boolean |
249 | 249 | * @codeCoverageIgnore |
250 | 250 | */ |
251 | - private function addValidators(AbstractType &$typeClass, array $definition) |
|
251 | + private function addValidators(AbstractType & $typeClass, array $definition) |
|
252 | 252 | { |
253 | 253 | if (!empty($definition['validator'])) { |
254 | 254 |