Completed
Push — master ( 44b88c...ea2c59 )
by Pablo
03:18
created
src/PhpValueObjects/Tests/Collection/CollectionTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $this->expectException(InvalidCollectionObjectException::class);
18 18
 
19
-        new Collection([new \stdClass(), new \stdClass()]);
19
+        new Collection([ new \stdClass(), new \stdClass() ]);
20 20
     }
21 21
 
22 22
     /**
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function itShouldReturnEmptyCollection()
42 42
     {
43
-        $collection = new Collection([]);
43
+        $collection = new Collection([ ]);
44 44
 
45 45
         $this->assertEmpty($collection->getCollection());
46 46
     }
Please login to merge, or discard this patch.