Completed
Push — master ( 1c21c5...279fbd )
by Pieter
16s queued 11s
created
src/Apie.php 1 patch
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,6 @@  discard block
 block discarded – undo
95 95
     private $chainableFormatRetriever;
96 96
 
97 97
     /**
98
-
99 98
      * @param object[] $plugins
100 99
      * @param bool $debug
101 100
      * @param string|null $cacheFolder
@@ -343,7 +342,7 @@  discard block
 block discarded – undo
343 342
         return $document;
344 343
     }
345 344
 
346
-     public function getObjectAccess(): ObjectAccessInterface
345
+        public function getObjectAccess(): ObjectAccessInterface
347 346
     {
348 347
         $objectAccess = new ObjectAccess();
349 348
         $objectAccesses = $this->pluginContainer->getPluginsWithInterface(ObjectAccessProviderInterface::class);
Please login to merge, or discard this patch.
src/OpenApiSchema/OpenApiSpecGenerator.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -170,14 +170,14 @@
 block discarded – undo
170 170
                                     [
171 171
                                         'schema' => $validationErrorSchema,
172 172
                                     ]
173
-                               ),
174
-                               'application/xml' => new OASv3\MediaType(
173
+                                ),
174
+                                'application/xml' => new OASv3\MediaType(
175 175
                                     [
176 176
                                         'schema' => $validationErrorSchema,
177 177
                                     ]
178
-                               ),
179
-                           ]
180
-                       ),
178
+                                ),
179
+                            ]
180
+                        ),
181 181
                     ],
182 182
                 ]),
183 183
             ]
Please login to merge, or discard this patch.
src/Plugins/Core/Serializers/SymfonySerializerAdapter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,8 +154,8 @@
 block discarded – undo
154 154
         return $this->serializer->denormalize(
155 155
             $data,
156 156
             $resourceClass,
157
-           self::INTERNAL_FOR_DATALAYER,
158
-           ['object_access' => new ObjectAccess(false, true), 'keep_setter_calls' => true]
157
+            self::INTERNAL_FOR_DATALAYER,
158
+            ['object_access' => new ObjectAccess(false, true), 'keep_setter_calls' => true]
159 159
         );
160 160
     }
161 161
 }
Please login to merge, or discard this patch.