Passed
Push — master ( 613a21...fb8a8c )
by Matthew
04:23
created
src/Extensions/LocatorControllerExtension.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * @var array
36 36
      */
37 37
     private static $dependencies = [
38
-        'FormSchema' => '%$' . FormSchema::class,
38
+        'FormSchema' => '%$'.FormSchema::class,
39 39
     ];
40 40
 
41 41
     /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 
90 90
         Requirements::customScript("
91 91
             window.ss = window.ss || {};
92
-            window.ss.config = " . $this->owner->getClientConfig() . ";
92
+            window.ss.config = " . $this->owner->getClientConfig().";
93 93
         ");
94 94
 
95 95
         $this->owner->customScript();
@@ -119,8 +119,8 @@  discard block
 block discarded – undo
119 119
         }
120 120
 
121 121
         // force to float
122
-        $defaultLat = (float)$this->owner->DefaultLat;
123
-        $defaultLng = (float)$this->owner->DefaultLng;
122
+        $defaultLat = (float) $this->owner->DefaultLat;
123
+        $defaultLng = (float) $this->owner->DefaultLng;
124 124
 
125 125
         Requirements::customScript("
126 126
             window.dynamic_locator = {
Please login to merge, or discard this patch.