Passed
Pull Request — master (#23)
by
unknown
03:32
created
src/Geography/Address/Physical/GenericPhysicalAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
         $values = [$street, $city, $region, $postalCode, $country];
125 125
         $nonEmptyValues = [];
126 126
         foreach ($values as $value) {
127
-            if($value !== ''){
127
+            if ($value !== '') {
128 128
                 $nonEmptyValues[] = $value;
129 129
             }
130 130
         }
Please login to merge, or discard this patch.
src/Geography/Address/Physical/ByCountry/Br/BrPhysicalAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
         $values = [$street, $municipality, $state, $postalCode, $country];
175 175
         $nonEmptyValues = [];
176 176
         foreach ($values as $value) {
177
-            if($value !== ''){
177
+            if ($value !== '') {
178 178
                 $nonEmptyValues[] = $value;
179 179
             }
180 180
         }
Please login to merge, or discard this patch.
src/Geography/Address/Physical/ByCountry/Us/UsPhysicalAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
         $values = [$street, $city, $state, $postalCode, $country];
186 186
         $nonEmptyValues = [];
187 187
         foreach ($values as $value) {
188
-            if($value !== ''){
188
+            if ($value !== '') {
189 189
                 $nonEmptyValues[] = $value;
190 190
             }
191 191
         }
Please login to merge, or discard this patch.