Passed
Push — master ( 4d893d...6ccdbd )
by Matthew
03:35
created
src/Extensions/LocatorControllerExtension.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      * @var array
39 39
      */
40 40
     private static $dependencies = [
41
-        'FormSchema' => '%$' . FormSchema::class,
41
+        'FormSchema' => '%$'.FormSchema::class,
42 42
     ];
43 43
 
44 44
     /**
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
         Requirements::customScript("
94 94
             window.ss = window.ss || {};
95
-            window.ss.config = " . $this->owner->getClientConfig() . ";
95
+            window.ss.config = " . $this->owner->getClientConfig().";
96 96
         ");
97 97
 
98 98
         $this->owner->customScript();
@@ -130,8 +130,8 @@  discard block
 block discarded – undo
130 130
         $clusterImages = json_encode($this->getClusterImages());
131 131
 
132 132
         // force to float
133
-        $defaultLat = (float)$this->owner->DefaultLat;
134
-        $defaultLng = (float)$this->owner->DefaultLng;
133
+        $defaultLat = (float) $this->owner->DefaultLat;
134
+        $defaultLng = (float) $this->owner->DefaultLng;
135 135
 
136 136
         Requirements::customScript("
137 137
             window.dynamic_locator = {
Please login to merge, or discard this patch.