Completed
Push — master ( b61bfb...5e9f2c )
by Vincent
06:04 queued 02:59
created
src/Members.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace VGirol\JsonApiAssert;
5 5
 
Please login to merge, or discard this patch.
src/Constraint/ContainsAtLeastOneConstraint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace VGirol\JsonApiAssert\Constraint;
5 5
 
Please login to merge, or discard this patch.
src/InvalidArgumentHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 /*
5 5
  * This file is inspired from PHPUnit\Util\InvalidArgumentHelper.
Please login to merge, or discard this patch.
src/Constraint/ContainsOnlyAllowedMembersConstraint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace VGirol\JsonApiAssert\Constraint;
5 5
 
Please login to merge, or discard this patch.
src/InvalidArgumentException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace VGirol\JsonApiAssert;
5 5
 
Please login to merge, or discard this patch.
src/Assert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace VGirol\JsonApiAssert;
5 5
 
Please login to merge, or discard this patch.
src/Constraint/PaginationLinksEqualConstraint.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         $notExpectedMembers = array_keys(
63 63
             array_filter(
64 64
                 $cleanExpected,
65
-                function ($value) {
65
+                function($value) {
66 66
                     return $value === false;
67 67
                 }
68 68
             )
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         // Extracts expected members
75 75
         $expectedMembers = array_filter(
76 76
             $cleanExpected,
77
-            function ($value) {
77
+            function($value) {
78 78
                 return $value !== false;
79 79
             }
80 80
         );
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
         // Extracts members whose value have to be tested
86 86
         $expectedValues = array_filter(
87 87
             $expectedMembers,
88
-            function ($value) {
88
+            function($value) {
89 89
                 return $value !== true;
90 90
             }
91 91
         );
Please login to merge, or discard this patch.
src/Asserts/Structure/AssertJsonapiObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace VGirol\JsonApiAssert\Asserts\Structure;
5 5
 
Please login to merge, or discard this patch.
src/Asserts/Structure/AssertMetaObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types=1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace VGirol\JsonApiAssert\Asserts\Structure;
5 5
 
Please login to merge, or discard this patch.