Passed
Push — master ( 13a779...d5ca5b )
by Misha
59s queued 11s
created
src/CommunibaseIdCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     private function __construct(array $strings)
24 24
     {
25 25
         $this->ids = \array_map(
26
-            static function (string $string) {
26
+            static function(string $string) {
27 27
                 return CommunibaseId::fromString($string);
28 28
             },
29 29
             \array_filter(\array_unique($strings))
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     {
79 79
         return array_reduce(
80 80
             $this->ids,
81
-            static function (array $carry, CommunibaseId $id) {
81
+            static function(array $carry, CommunibaseId $id) {
82 82
                 $carry[] = ['$ObjectId' => $id->toString()];
83 83
                 return $carry;
84 84
             },
Please login to merge, or discard this patch.