Passed
Push — master ( b03c4d...7cc0ae )
by Andreas
05:12
created
src/Model/Raster.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 
60 60
         if (preg_match_all('/\sBand\s*(\d+):\s*Value:\s*([\d\.\-]+)/', $output, $matches)) {
61 61
             $bands = array_combine($matches[1], $matches[2]);
62
-            array_walk($bands, function(&$item){
62
+            array_walk($bands, function(&$item) {
63 63
                 $item = (int)$item;
64 64
             });
65 65
             return $bands;
Please login to merge, or discard this patch.
src/ORM/FieldType/DBGeography.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             return null;
47 47
         }
48 48
 
49
-        return ['ST_GeogFromText(?)' => [ $value->reproject(4326)->wkt ]];
49
+        return ['ST_GeogFromText(?)' => [$value->reproject(4326)->wkt]];
50 50
     }
51 51
 
52 52
     public function exists()
Please login to merge, or discard this patch.