Completed
Push — master ( a5cf18...3168b6 )
by Pablo
01:59
created
src/PhpValueObjects/Tests/Identity/UuidValueObjectTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@
 block discarded – undo
23 23
     public function invalidUuidProvider()
24 24
     {
25 25
         return [
26
-            [null],
27
-            [$this->faker()->numberBetween()],
28
-            [$this->faker()->address],
26
+            [ null ],
27
+            [ $this->faker()->numberBetween() ],
28
+            [ $this->faker()->address ],
29 29
         ];
30 30
     }
31 31
 
Please login to merge, or discard this patch.
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.
src/PhpValueObjects/Tests/Network/TcpPortValueObjectTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -25,11 +25,11 @@
 block discarded – undo
25 25
     public function invalidTcpPortProvider()
26 26
     {
27 27
         return [
28
-            [null],
29
-            [11362.0],
30
-            [$this->faker()->randomFloat()],
31
-            [$this->faker()->numberBetween(65536)],
32
-            [-$this->faker()->numberBetween()],
28
+            [ null ],
29
+            [ 11362.0 ],
30
+            [ $this->faker()->randomFloat() ],
31
+            [ $this->faker()->numberBetween(65536) ],
32
+            [-$this->faker()->numberBetween() ],
33 33
         ];
34 34
     }
35 35
 
Please login to merge, or discard this patch.