Passed
Pull Request — 1.0.0 (#7)
by
unknown
08:21
created
src/Collection/IdCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     /** @return string[] */
15 15
     public function toStringArray(): array
16 16
     {
17
-        return array_map(function (Id $id) {
17
+        return array_map(function(Id $id) {
18 18
             return $id->getHumanReadableId();
19 19
         }, $this->items);
20 20
     }
Please login to merge, or discard this patch.
tests/Collection/IdCollectionTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
         $idCollection->add($id2);
69 69
         $idCollection->add($id3);
70 70
 
71
-       // Assert
71
+        // Assert
72 72
         $this->assertEquals($idStringArray, $idCollection->toStringArray());
73 73
     }
74 74
 
Please login to merge, or discard this patch.