Passed
Branch feature/metadata-options (233e6e)
by Pieter
02:46
created
src/Services/Retrievers/EloquentModelDataLayer.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,9 +63,9 @@
 block discarded – undo
63 63
         $queryBuilder = $modelClass::where($searchFilterRequest->getSearches());
64 64
 
65 65
         $modelInstances = $queryBuilder->orderBy('id', 'ASC')
66
-                                     ->skip($searchFilterRequest->getOffset())
67
-                                     ->take($searchFilterRequest->getNumberOfItems())
68
-                                     ->get();
66
+                                        ->skip($searchFilterRequest->getOffset())
67
+                                        ->take($searchFilterRequest->getNumberOfItems())
68
+                                        ->get();
69 69
 
70 70
         return array_filter(
71 71
             array_map(
Please login to merge, or discard this patch.
config/apie.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,6 +77,6 @@
 block discarded – undo
77 77
      * @see ApiResource
78 78
      */
79 79
     'resource-config' => [
80
-       /*ApplicationInfo::class => new ApiResource(['retrieveClass' => StatusCheckRetriever::class]),*/
80
+        /*ApplicationInfo::class => new ApiResource(['retrieveClass' => StatusCheckRetriever::class]),*/
81 81
     ],
82 82
 ];
Please login to merge, or discard this patch.