Completed
Pull Request — develop (#17)
by Patrick
03:26
created
Http/Rest/class.DataTableAPI.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         $dataTable = $this->getDataTable();
76 76
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
77 77
         $areas = $dataTable->read($odata->filter, $odata->select, $odata->top,
78
-                                  $odata->skip, $odata->orderby);
78
+                                    $odata->skip, $odata->orderby);
79 79
         if(method_exists($this, 'processEntry'))
80 80
         {
81 81
             $count = count($areas);
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
110 110
         $filter = $this->getFilterForPrimaryKey($args['name']);
111 111
         $areas = $dataTable->read($filter, $odata->select, $odata->top,
112
-                                  $odata->skip, $odata->orderby);
112
+                                    $odata->skip, $odata->orderby);
113 113
         if(empty($areas))
114 114
         {
115 115
             return $response->withStatus(404);
Please login to merge, or discard this patch.