Test Failed
Pull Request — master (#19)
by Flo
03:27
created
src/View/Helper/RenderBlock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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));
Please login to merge, or discard this patch.
src/Translate/Translator.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Http/Http.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Controller/Dispatcher.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-     * @param $file
144
+     * @param string $file
145 145
      * @return string
146 146
      * @codeCoverageIgnore
147 147
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@
 block discarded – undo
275 275
 
276 276
             array_splice($var, 0, 1);
277 277
 
278
-            if ($this->requestType === 'default'  && in_array($this->request->getMethod(), $data['method'])) {
278
+            if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) {
279 279
 
280 280
                 return [
281 281
                     'class'      => $data['controller'],
Please login to merge, or discard this patch.
src/Kernel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ORM/Entity.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 namespace Faulancer\ORM;
9 9
 
10 10
 use Faulancer\Service\AbstractControllerService;
11
-use Faulancer\Service\DbService;
12 11
 use Faulancer\ServiceLocator\ServiceLocator;
13 12
 use \ORM\EntityManager;
14 13
 
Please login to merge, or discard this patch.
src/Form/Type/Base/Select.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/View/ViewController.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      */
146 146
     public function getVariable(string $key)
147 147
     {
148
-        if(isset($this->variable[$key])) {
148
+        if (isset($this->variable[$key])) {
149 149
             return $this->variable[$key];
150 150
         }
151 151
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      */
161 161
     public function hasVariable(string $key) :bool
162 162
     {
163
-        if(isset($this->variable[$key])) {
163
+        if (isset($this->variable[$key])) {
164 164
             return true;
165 165
         }
166 166
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      */
176 176
     public function setVariables(array $variables = []) :self
177 177
     {
178
-        foreach($variables AS $key=>$value) {
178
+        foreach ($variables AS $key=>$value) {
179 179
             $this->setVariable($key, $value);
180 180
         }
181 181
 
@@ -292,8 +292,8 @@  discard block
 block discarded – undo
292 292
      */
293 293
     public function __destruct()
294 294
     {
295
-        unset( $this->variable );
296
-        unset( $this->template );
295
+        unset($this->variable);
296
+        unset($this->template);
297 297
     }
298 298
 
299 299
 }
300 300
\ No newline at end of file
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -7,14 +7,10 @@
 block discarded – undo
7 7
  */
8 8
 namespace Faulancer\View;
9 9
 
10
-use Faulancer\Exception\ClassNotFoundException;
11 10
 use Faulancer\Exception\ConstantMissingException;
12
-use Faulancer\Exception\Exception;
13 11
 use Faulancer\Exception\FileNotFoundException;
14 12
 use Faulancer\Exception\ViewHelperException;
15
-use Faulancer\Exception\ViewHelperIncompatibleException;
16 13
 use Faulancer\Service\Config;
17
-use Faulancer\Service\ResponseService;
18 14
 use Faulancer\ServiceLocator\ServiceLocator;
19 15
 
20 16
 /**
Please login to merge, or discard this patch.
src/View/Helper/RenderView.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.