Passed
Push — master ( 7a5f37...181562 )
by Pablo
03:19 queued 11s
created
src/PhpValueObjects/Tests/Identity/Sha1ValueObjectTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
     public function invalidSha1Provider(): array
26 26
     {
27 27
         return [
28
-            [$this->faker()->md5],
29
-            [$this->faker()->sha256],
30
-            [$this->faker()->text],
28
+            [ $this->faker()->md5 ],
29
+            [ $this->faker()->sha256 ],
30
+            [ $this->faker()->text ],
31 31
         ];
32 32
     }
33 33
 
Please login to merge, or discard this patch.
src/PhpValueObjects/Tests/Identity/UuidValueObjectTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
     public function invalidUuidProvider(): array
26 26
     {
27 27
         return [
28
-            [$this->faker()->numberBetween()],
29
-            [$this->faker()->address],
28
+            [ $this->faker()->numberBetween() ],
29
+            [ $this->faker()->address ],
30 30
         ];
31 31
     }
32 32
 
Please login to merge, or discard this patch.
src/PhpValueObjects/Tests/Identity/Md5ValueObjectTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
     public function invalidMd5HashProvider(): array
26 26
     {
27 27
         return [
28
-            [$this->faker()->sha1],
29
-            [$this->faker()->sha256],
30
-            [$this->faker()->text],
28
+            [ $this->faker()->sha1 ],
29
+            [ $this->faker()->sha256 ],
30
+            [ $this->faker()->text ],
31 31
         ];
32 32
     }
33 33
 
Please login to merge, or discard this patch.
src/PhpValueObjects/Tests/Money/CurrencyValueObjectTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
     public function currencyCodeProvider(): array
13 13
     {
14 14
         return [
15
-            ['EUR'],
16
-            ['USD'],
17
-            ['KYD'],
18
-            ['HKD'],
15
+            [ 'EUR' ],
16
+            [ 'USD' ],
17
+            [ 'KYD' ],
18
+            [ 'HKD' ],
19 19
         ];
20 20
     }
21 21
     /**
Please login to merge, or discard this patch.