Passed
Pull Request — master (#123)
by Erik
03:18
created
src/Support/Schema.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -198,9 +198,9 @@  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))
203
-                      ->push(new Types\CollectionOrderByType($this->registry, $schema));
201
+                        ->push(new Types\EntityLookupType($this->registry, $schema))
202
+                        ->push(new Types\CollectionFilterType($this->registry, $schema))
203
+                        ->push(new Types\CollectionOrderByType($this->registry, $schema));
204 204
 
205 205
                 if ($schema->isSearchable()) {
206 206
                     $types->push(new Types\CollectionSearchType($this->registry, $schema));
@@ -208,12 +208,12 @@  discard block
 block discarded – undo
208 208
 
209 209
                 if ($schema->isIndexable()) {
210 210
                     $types->push(new Types\EntityCollectionType($this->registry, $schema))
211
-                          ->push(new Types\CollectionRootSearchType($this->registry, $schema));
211
+                            ->push(new Types\CollectionRootSearchType($this->registry, $schema));
212 212
                 }
213 213
 
214 214
                 if ($schema->isMutable()) {
215 215
                     $types->push(new Types\CreateInputType($this->registry, $schema))
216
-                          ->push(new Types\UpdateInputType($this->registry, $schema));
216
+                            ->push(new Types\UpdateInputType($this->registry, $schema));
217 217
                 }
218 218
             }
219 219
 
Please login to merge, or discard this patch.