Passed
Push — master ( 5851cc...f9c35b )
by Tõnis
02:50 queued 43s
created
views/form.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
                     'pluginOptions'=>[
27 27
                         'placeholder' => $widget->placeHolders['country'],
28 28
                     ],
29
-                ]);?>
29
+                ]); ?>
30 30
             </div>
31 31
 
32 32
             <label class="col-sm-2 control-label" for="textinput"><?=$widget->attributeLabels['state']?></label>
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
                         'url' => Url::toRoute(['/addressform/query/regions']),
45 45
                         'loadingText' => 'Loading child level 1 ...',
46 46
                     ],
47
-                ]);?>
47
+                ]); ?>
48 48
             </div>
49 49
         </div>
50 50
 
Please login to merge, or discard this patch.
AddressForm.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
 
81 81
         $countryList = [];
82 82
         foreach ($this->countries as $country) {
83
-            $countryList[$country->getIsoAlpha2()] = $country->getEmoji(). " " . $country->getName();
83
+            $countryList[$country->getIsoAlpha2()] = $country->getEmoji() . " " . $country->getName();
84 84
         }
85 85
         return $countryList;
86 86
     }
Please login to merge, or discard this patch.