Completed
Push — master ( 1c21c5...279fbd )
by Pieter
16s queued 11s
created
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.
src/Plugins/Pagination/PaginationPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         }
62 62
         if ($added) {
63 63
             $document->components->headers['Count'] = new Header('number of results', ['schema' => new Schema(['type' => 'number', 'format' => 'int'])]);
64
-            $document->components->headers['Url'] = new Header('pagination url', ['schema' => new Schema(['type' => 'string', 'format' => 'url']) ]);
64
+            $document->components->headers['Url'] = new Header('pagination url', ['schema' => new Schema(['type' => 'string', 'format' => 'url'])]);
65 65
         }
66 66
         return $document;
67 67
     }
Please login to merge, or discard this patch.