Completed
Pull Request — master (#3)
by
unknown
08:58
created
src/Eloquent/Builder.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/PostgresConnection.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.