Passed
Pull Request — master (#93)
by Antonio J.
54s
created
src/MartinGeorgiev/Doctrine/DBAL/Types/BooleanArray.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     {
35 35
         $phpArray = parent::convertToPHPValue($postgresArray, $platform);
36 36
         if (\is_array($phpArray)) {
37
-            $phpArray = \array_map(static function ($value) use ($platform) { return $platform->convertFromBoolean($value); }, $phpArray);
37
+            $phpArray = \array_map(static function($value) use ($platform) { return $platform->convertFromBoolean($value); }, $phpArray);
38 38
         }
39 39
 
40 40
         return $phpArray;
Please login to merge, or discard this patch.