Completed
Push — master ( 26807d...efd759 )
by Patrick
01:43
created
api/v1/class.ParticipantAPI.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
92 92
         $filter = $this->getFilterForPrimaryKey($uid);
93 93
         $areas = $dataTable->read($filter, $odata->select, $odata->top,
94
-                                   $odata->skip, $odata->orderby);
94
+                                    $odata->skip, $odata->orderby);
95 95
         if(empty($areas))
96 96
         {
97 97
             return $response->withStatus(404);
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
163 163
         $filter = $this->getFilterForPrimaryKey($uid);
164 164
         $areas = $dataTable->read($filter, array('certs'), $odata->top,
165
-                                   $odata->skip, $odata->orderby);
165
+                                    $odata->skip, $odata->orderby);
166 166
         if(empty($areas))
167 167
         {
168 168
             return $response->withStatus(404);
Please login to merge, or discard this patch.
api/v1/class.DepartmentAPI.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         $filter = new \Data\Filter("departmentID eq '$deptId'");
78 78
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
79 79
         $roles = $dataTable->read($filter, $odata->select, $odata->top,
80
-                                   $odata->skip, $odata->orderby);
80
+                                    $odata->skip, $odata->orderby);
81 81
         if($roles === false)
82 82
         {
83 83
             $roles = array();
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
             }
115 115
         }
116 116
         $shifts = $dataTable->read($filter, $odata->select, $odata->top,
117
-                                   $odata->skip, $odata->orderby);
117
+                                    $odata->skip, $odata->orderby);
118 118
         if($shifts === false)
119 119
         {
120 120
             $shifts = array();
Please login to merge, or discard this patch.
api/v1/class.EventAPI.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
             }
88 88
         }
89 89
         $shifts = $dataTable->read($filter, $odata->select, $odata->top,
90
-                                   $odata->skip, $odata->orderby);
90
+                                    $odata->skip, $odata->orderby);
91 91
         if($shifts === false)
92 92
         {
93 93
             $shifts = array();
Please login to merge, or discard this patch.