Passed
Push — master ( af0e2f...ade47d )
by Gábor
03:00 queued 10s
created
src/Query/Command/Add.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
     public function toJson(): string
67 67
     {
68
-        return self::jsonEncode(array_filter($this->options, static function ($option) { return null !== $option; }));
68
+        return self::jsonEncode(array_filter($this->options, static function($option) { return null !== $option; }));
69 69
     }
70 70
 
71 71
     public function getName(): string
Please login to merge, or discard this patch.
src/Query/Command/Commit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
     public function toJson(): string
69 69
     {
70
-        return self::jsonEncode(array_filter($this->options, static function ($option) { return null !== $option; }), JSON_FORCE_OBJECT);
70
+        return self::jsonEncode(array_filter($this->options, static function($option) { return null !== $option; }), JSON_FORCE_OBJECT);
71 71
     }
72 72
 
73 73
     public function getName(): string
Please login to merge, or discard this patch.
src/Query/Command/Optimize.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
     public function toJson(): string
69 69
     {
70
-        return self::jsonEncode(array_filter($this->options, static function ($option) { return null !== $option; }), JSON_FORCE_OBJECT);
70
+        return self::jsonEncode(array_filter($this->options, static function($option) { return null !== $option; }), JSON_FORCE_OBJECT);
71 71
     }
72 72
 
73 73
     public function getName(): string
Please login to merge, or discard this patch.