Passed
Push — master ( 69cbf7...adea91 )
by Tõnis
02:01
created
AddressForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
         $countryList = [];
106 106
         foreach ($this->countries as $country) {
107
-            $countryList[$country->getIsoAlpha2()] = $country->getEmoji(). " " . $country->getName();
107
+            $countryList[$country->getIsoAlpha2()] = $country->getEmoji() . " " . $country->getName();
108 108
         }
109 109
         return $countryList;
110 110
     }
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             $params = [];
145 145
             if (!empty($this->disabledFields)) {
146 146
                 $requiredFields = array_diff(Address::$defaultRequiredFields, $this->disabledFields);
147
-                $params['requiredFields'] =  $requiredFields;
147
+                $params['requiredFields'] = $requiredFields;
148 148
             }
149 149
             $this->address = new Address($params);
150 150
         }
Please login to merge, or discard this patch.