Passed
Branch main (7b2231)
by Pieter
03:23
created
Category
src/ResourceFactories/MockApiResourceFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
         $prop->setAccessible(true);
101 101
         $factories = $prop->getValue($factory);
102 102
         return $this->apie = new ChainableFactory(
103
-            array_filter($factories, function (ApiResourceFactoryInterface $factory) {
103
+            array_filter($factories, function(ApiResourceFactoryInterface $factory) {
104 104
                 return !$factory instanceof MockApiResourceFactory;
105 105
             })
106 106
         );
Please login to merge, or discard this patch.
src/Pagers/MockAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         );
71 71
 
72 72
         return array_map(
73
-            function ($id) {
73
+            function($id) {
74 74
                 return $this->dataLayer->retrieve($this->resourceClass, $id, $this->context);
75 75
             },
76 76
             SearchFilterHelper::applySearchFilter($this->idList, $searchFilterRequest, $this->propertyAccessor)
Please login to merge, or discard this patch.