Passed
Push — master ( dc9af5...463fb5 )
by Vincent
02:37
created
src/Factory/ResourceIdentifierFactory.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\Factory;
5 5
 
Please login to merge, or discard this patch.
src/Factory/CollectionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         }
34 34
 
35 35
         return $this->map(
36
-            function ($resource) {
36
+            function($resource) {
37 37
                 return $resource->toArray();
38 38
             }
39 39
         );
Please login to merge, or discard this patch.
src/Factory/ResourceObjectFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
         }
102 102
         if (isset($this->relationships)) {
103 103
             $resource[Members::RELATIONSHIPS] = array_map(
104
-                function ($relationship) {
104
+                function($relationship) {
105 105
                     return $relationship->toArray();
106 106
                 },
107 107
                 $this->relationships
Please login to merge, or discard this patch.
src/HasJsonApiAssert.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/Content/AssertInclude.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\Content;
5 5
 
Please login to merge, or discard this patch.
src/Asserts/Structure/AssertMemberName.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/AssertArrays.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/AssertMembers.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/AssertErrorsObject.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.