@@ -38,7 +38,7 @@ discard block |
||
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 |
||
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 |
||
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 = { |