Passed
Branch 3.0.0 (0ebb76)
by Pieter
02:27
created
src/Apie.php 2 patches
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,6 @@
 block discarded – undo
139 139
     private $chainableFormatRetriever;
140 140
 
141 141
     /**
142
-
143 142
      * @param object[] $plugins
144 143
      * @param bool $debug
145 144
      * @param string|null $cacheFolder
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
         if (!$this->chainableFormatRetriever) {
325 325
             $this->chainableFormatRetriever = new ChainableFormatRetriever(
326 326
                 array_map(
327
-                    function (EncoderProviderInterface $encoderProvider) {
327
+                    function(EncoderProviderInterface $encoderProvider) {
328 328
                         return $encoderProvider->getFormatRetriever();
329 329
                     },
330 330
                     $this->encoders
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
         if (!$this->chainableFactory) {
360 360
             $this->chainableFactory = new ChainableFactory(
361 361
                 array_map(
362
-                    function (ApiResourceFactoryProviderInterface $factoryProvider) {
362
+                    function(ApiResourceFactoryProviderInterface $factoryProvider) {
363 363
                         return $factoryProvider->getApiResourceFactory();
364 364
                     },
365 365
                     $this->apiResourceFactories
Please login to merge, or discard this patch.
src/Plugins/ValueObject/ValueObjectPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function getDynamicSchemaLogic(): array
35 35
     {
36 36
         return [
37
-            ValueObjectInterface::class => function (string $resourceClass) {
37
+            ValueObjectInterface::class => function(string $resourceClass) {
38 38
                 return $resourceClass::toSchema();
39 39
             }
40 40
         ];
Please login to merge, or discard this patch.