Completed
Push — master ( 027dd9...9a2e94 )
by Vincent
16:40 queued 01:45
created
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/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/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/Asserts/Structure/AssertStructure.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,6 @@
 block discarded – undo
73 73
      * "data", "errors", "meta", "jsonapi", "links", "included" (@see assertContainsOnlyAllowedMembers).
74 74
      * 4) if the json document does not contain a top-level "data" member, the "included" member must not
75 75
      * be present either.
76
-
77 76
      * @param array $json
78 77
      *
79 78
      * @return void
Please login to merge, or discard this patch.