Test Failed
Push — master ( e3ba09...03f0a0 )
by Flo
02:41
created
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         list($class, $action, $permission, $payload) = $this->_getRoute($this->request->getPath());
88 88
 
89 89
         /** @var AbstractController $class */
90
-        $class   = new $class($this->request);
90
+        $class = new $class($this->request);
91 91
 
92 92
         if (!empty($permission)) {
93 93
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 
293 293
             array_splice($var, 0, 1);
294 294
 
295
-            if ($this->requestType === 'default'  && in_array($this->request->getMethod(), $data['method'])) {
295
+            if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) {
296 296
 
297 297
                 return [
298 298
                     $data['controller'],
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -8,8 +8,6 @@  discard block
 block discarded – undo
8 8
 
9 9
 use Faulancer\Event\Observer;
10 10
 use Faulancer\Event\Type\OnDispatch;
11
-use Faulancer\Exception\ClassNotFoundException;
12
-use Faulancer\Exception\DispatchFailureException;
13 11
 use Faulancer\Exception\IncompatibleResponseException;
14 12
 use Faulancer\Exception\ServiceNotFoundException;
15 13
 use Faulancer\Http\Http;
@@ -17,7 +15,6 @@  discard block
 block discarded – undo
17 15
 use Faulancer\Http\Request;
18 16
 use Faulancer\Http\Response;
19 17
 use Faulancer\Exception\MethodNotFoundException;
20
-use Faulancer\Service\AuthenticatorPlugin;
21 18
 use Faulancer\Service\AuthenticatorService;
22 19
 use Faulancer\Service\Config;
23 20
 use Faulancer\Service\SessionManagerService;
Please login to merge, or discard this patch.
src/Kernel.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Faulancer\Exception\Exception;
13 13
 use Faulancer\Http\Request;
14 14
 use Faulancer\Service\Config;
15
-use Faulancer\Controller\AbstractController;
16 15
 
17 16
 /**
18 17
  * Class Kernel
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/Http/Request.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
      */
154 154
     public function setBody($body)
155 155
     {
156
-       $this->body = $body;
156
+        $this->body = $body;
157 157
     }
158 158
 
159 159
     /**
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,6 @@
 block discarded – undo
7 7
  */
8 8
 namespace Faulancer\Http;
9 9
 
10
-use Faulancer\Exception\InvalidArgumentException;
11
-
12 10
 /**
13 11
  * Class Request
14 12
  */
Please login to merge, or discard this patch.
src/View/Helper/Link.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
             $id = ' id="' . implode(' ', $elementAttributes['id']) . '" ';
56 56
         }
57 57
 
58
-        if (!empty($elementAttributes['class'])){
58
+        if (!empty($elementAttributes['class'])) {
59 59
             $class = 'class="' . implode(' ', $elementAttributes['class']) . '" ';
60 60
         }
61 61
 
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Faulancer\View\Helper;
4 4
 
5
-use Faulancer\Exception\ConfigInvalidException;
6 5
 use Faulancer\Exception\RouteInvalidException;
7 6
 use Faulancer\Exception\ServiceNotFoundException;
8 7
 use Faulancer\Http\Request;
Please login to merge, or discard this patch.
src/Http/Response.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     /**
95 95
      * Get response body and set headers
96 96
      *
97
-     * @return mixed
97
+     * @return string
98 98
      */
99 99
     public function getContent()
100 100
     {
Please login to merge, or discard this patch.
src/Form/Validator/AbstractValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     {
41 41
         if (!$this->process($this->field->getValue())) {
42 42
 
43
-            $this->field->addAttribute('class',  'error');
43
+            $this->field->addAttribute('class', 'error');
44 44
             $this->field->setErrorMessages([$this->getMessage()]);
45 45
             return false;
46 46
 
Please login to merge, or discard this patch.
src/Form/Type/AbstractType.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Faulancer\Service\SessionManagerService;
14 14
 use Faulancer\ServiceLocator\ServiceLocator;
15 15
 use Faulancer\Form\Validator\ValidatorChain;
16
-use Faulancer\ServiceLocator\ServiceLocatorAwareInterface;
17 16
 use Faulancer\ServiceLocator\ServiceLocatorInterface;
18 17
 use Faulancer\Session\SessionManager;
19 18
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
         }
296 296
 
297 297
         if (empty($this->getType()) && !empty($this->definition['type'])) {
298
-             $this->setType($this->definition['type']);
298
+                $this->setType($this->definition['type']);
299 299
         }
300 300
 
301 301
         if (empty($this->getValue()) && !empty($this->definition['value'])) {
Please login to merge, or discard this patch.