@@ -22,7 +22,7 @@ |
||
22 | 22 | foreach ($values as $key => &$value) { |
23 | 23 | if ($value instanceof Geometry) { |
24 | 24 | try { |
25 | - $wkt = geoPHP::load(json_decode(json_encode($value->jsonSerialize()), FALSE), 'json') |
|
25 | + $wkt = geoPHP::load(json_decode(json_encode($value->jsonSerialize()), false), 'json') |
|
26 | 26 | ->out('wkt'); |
27 | 27 | } catch (\Exception $e) { |
28 | 28 | throw new SpatialParseException(\sprintf('Unable to parse geometry data for column %s.',$key), 0, $e); |
@@ -27,7 +27,7 @@ |
||
27 | 27 | */ |
28 | 28 | public function getSchemaBuilder() |
29 | 29 | { |
30 | - if ($this->schemaGrammar === NULL) { |
|
30 | + if ($this->schemaGrammar === null) { |
|
31 | 31 | $this->useDefaultSchemaGrammar(); |
32 | 32 | } |
33 | 33 |