Completed
Push — master ( 0d492a...3b127f )
by Flo
12:04
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/Http/Http.php 1 patch
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.
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/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.
src/View/Helper/Link.php 1 patch
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.
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/Mail/Mailer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         $headers .= 'Content-Type: multipart/mixed; charset=UTF-8; boundary=' . $boundary . $eol;
189 189
 
190 190
         if (!empty($this->from)) {
191
-            $headers .= 'From: ' .$this->from . $eol;
191
+            $headers .= 'From: ' . $this->from . $eol;
192 192
         }
193 193
 
194 194
         if (!empty($this->replyTo)) {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                 }
247 247
 
248 248
                 $body .= 'Content-Transfer-Encoding: base64' . $eol;
249
-                $body .= 'X-Attachment-Id: ' . rand(1000,99999) . $eol . $eol;
249
+                $body .= 'X-Attachment-Id: ' . rand(1000, 99999) . $eol . $eol;
250 250
                 $body .= $encodedContent . $eol;
251 251
 
252 252
             }
Please login to merge, or discard this patch.
src/Controller/ErrorController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
             'line'    => $this->_exception->getLine()
81 81
         ];
82 82
 
83
-        $trace  = $this->_exception->getTrace();
83
+        $trace = $this->_exception->getTrace();
84 84
 
85 85
         if (isset($trace[0]['line']) && $trace[0]['line'] !== $raiser['line']) {
86 86
             array_unshift($trace, $raiser);
Please login to merge, or discard this patch.
src/View/Helper/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
         }
69 69
 
70
-        $path = str_replace('//' , '/', $path);
70
+        $path = str_replace('//', '/', $path);
71 71
 
72 72
         if ($absolute) {
73 73
 
Please login to merge, or discard this patch.