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/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/ViewController.php 1 patch
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.
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/Form/AbstractFormBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
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
 
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/Http/XmlResponse.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      *
18 18
      * @param array $content
19 19
      */
20
-    public function __construct ($content = [])
20
+    public function __construct($content = [])
21 21
     {
22 22
         parent::__construct($content);
23 23
         $this->setContent($content);
@@ -31,30 +31,30 @@  discard block
 block discarded – undo
31 31
      * @param $data
32 32
      * @return bool|\DOMElement
33 33
      */
34
-    protected function generateXmlElement(\DOMDocument $dom, $data )
34
+    protected function generateXmlElement(\DOMDocument $dom, $data)
35 35
     {
36
-        if ( empty( $data['name'] ) )
36
+        if (empty($data['name']))
37 37
             return false;
38 38
 
39 39
         // Create the element
40
-        $element_value = ( ! empty( $data['value'] ) ) ? $data['value'] : null;
41
-        $element = $dom->createElement( $data['name'], $element_value );
40
+        $element_value = (!empty($data['value'])) ? $data['value'] : null;
41
+        $element = $dom->createElement($data['name'], $element_value);
42 42
 
43 43
         // Add any attributes
44
-        if ( ! empty( $data['attributes'] ) && is_array( $data['attributes'] ) ) {
45
-            foreach ( $data['attributes'] as $attribute_key => $attribute_value ) {
46
-                $element->setAttribute( $attribute_key, $attribute_value );
44
+        if (!empty($data['attributes']) && is_array($data['attributes'])) {
45
+            foreach ($data['attributes'] as $attribute_key => $attribute_value) {
46
+                $element->setAttribute($attribute_key, $attribute_value);
47 47
             }
48 48
         }
49 49
 
50 50
         // Any other items in the data array should be child elements
51
-        foreach ( $data as $data_key => $child_data ) {
52
-            if ( ! is_numeric( $data_key ) )
51
+        foreach ($data as $data_key => $child_data) {
52
+            if (!is_numeric($data_key))
53 53
                 continue;
54 54
 
55
-            $child = $this->generateXmlElement( $dom, $child_data );
56
-            if ( $child )
57
-                $element->appendChild( $child );
55
+            $child = $this->generateXmlElement($dom, $child_data);
56
+            if ($child)
57
+                $element->appendChild($child);
58 58
         }
59 59
 
60 60
         return $element;
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         $doc->encoding   = 'UTF-8';
75 75
         $child = $this->generateXmlElement($doc, $content);
76 76
 
77
-        if ( $child ) {
77
+        if ($child) {
78 78
             $doc->appendChild($child);
79 79
         }
80 80
 
Please login to merge, or discard this patch.