Test Failed
Pull Request — master (#19)
by Flo
02:43
created
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; 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/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.