Passed
Push — master ( b08012...15ce94 )
by Erik
05:21
created
src/Support/Schema.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -198,8 +198,8 @@  discard block
 block discarded – undo
198 198
                 $types = $types->merge($this->getPivotModelTypes($schema));
199 199
             } else {
200 200
                 $types->push(new Types\EntityType($this->registry, $schema))
201
-                      ->push(new Types\EntityLookupType($this->registry, $schema))
202
-                      ->push(new Types\CollectionFilterType($this->registry, $schema));
201
+                        ->push(new Types\EntityLookupType($this->registry, $schema))
202
+                        ->push(new Types\CollectionFilterType($this->registry, $schema));
203 203
 
204 204
                 if ($schema->isSortable()) {
205 205
                     $types->push(new types\CollectionOrderByType($this->registry, $schema));
@@ -211,12 +211,12 @@  discard block
 block discarded – undo
211 211
 
212 212
                 if ($schema->isIndexable()) {
213 213
                     $types->push(new Types\EntityCollectionType($this->registry, $schema))
214
-                          ->push(new Types\CollectionRootSearchType($this->registry, $schema));
214
+                            ->push(new Types\CollectionRootSearchType($this->registry, $schema));
215 215
                 }
216 216
 
217 217
                 if ($schema->isMutable()) {
218 218
                     $types->push(new Types\CreateInputType($this->registry, $schema))
219
-                          ->push(new Types\UpdateInputType($this->registry, $schema));
219
+                            ->push(new Types\UpdateInputType($this->registry, $schema));
220 220
                 }
221 221
             }
222 222
 
Please login to merge, or discard this patch.