Test Failed
Pull Request — master (#19)
by Flo
03:14
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/View/Helper/AssetList.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
 
42 42
         /** @var array $files */
43
-        $files = $view->getVariable('assets'.ucfirst($type));
43
+        $files = $view->getVariable('assets' . ucfirst($type));
44 44
 
45 45
         foreach ($files AS $file) {
46 46
             $result .= sprintf($pattern, $file) . "\n";
Please login to merge, or discard this patch.
src/Mail/Mailer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      */
161 161
     protected function sendMail($headers, $message)
162 162
     {
163
-        if (mail(implode(',', $this->recipients), $this->subject,$headers, $message)) {
163
+        if (mail(implode(',', $this->recipients), $this->subject, $headers, $message)) {
164 164
             return true;
165 165
         }
166 166
         return false;
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $headers  = 'MIME-Version: 1.0' . PHP_EOL;
187 187
 
188 188
         if (!empty($this->from)) {
189
-            $headers .= 'From: ' .$this->from . PHP_EOL;
189
+            $headers .= 'From: ' . $this->from . PHP_EOL;
190 190
         }
191 191
 
192 192
         if (!empty($this->replyTo)) {
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
                 }
245 245
 
246 246
                 $body .= 'Content-Transfer-Encoding: base64' . PHP_EOL;
247
-                $body .= 'X-Attachment-Id: ' . rand(1000,99999) . PHP_EOL . PHP_EOL;
247
+                $body .= 'X-Attachment-Id: ' . rand(1000, 99999) . PHP_EOL . PHP_EOL;
248 248
                 $body .= $encodedContent;
249 249
 
250 250
             }
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
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Faulancer\Exception\ClassNotFoundException;
10 10
 use Faulancer\Exception\DispatchFailureException;
11 11
 use Faulancer\Exception\IncompatibleResponseException;
12
-use Faulancer\Form\AbstractFormHandler;
13 12
 use Faulancer\Http\JsonResponse;
14 13
 use Faulancer\Http\Request;
15 14
 use Faulancer\Http\Response;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@
 block discarded – undo
239 239
 
240 240
             array_splice($var, 0, 1);
241 241
 
242
-            if ($this->requestType === 'default'  && in_array($this->request->getMethod(), $data['method'])) {
242
+            if ($this->requestType === 'default' && in_array($this->request->getMethod(), $data['method'])) {
243 243
 
244 244
                 return [
245 245
                     'class'  => $data['controller'],
Please login to merge, or discard this patch.
src/Http/Response.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * Response constructor.
52
-     * @param mixed $content
52
+     * @param string $content
53 53
      */
54 54
     public function __construct($content = null)
55 55
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Get response body and set headers
93 93
      *
94
-     * @return mixed
94
+     * @return string
95 95
      */
96 96
     public function getContent()
97 97
     {
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.