@@ -16,7 +16,7 @@ discard block |
||
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 |
||
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 | } |