Completed
Pull Request — develop (#17)
by Patrick
03:07
created
class.FlipPage.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -727,7 +727,7 @@
 block discarded – undo
727 727
      */
728 728
     private function addJSGlobals()
729 729
     {
730
-      $this->body = $this->body.'<script>
730
+        $this->body = $this->body.'<script>
731 731
 var profilesUrl = \''.$this->profilesUrl.'\'
732 732
 var loginUrl = \''.$this->loginUrl.'\'
733 733
 var logoutUrl = \''.$this->logoutUrl.'\'
Please login to merge, or discard this patch.
class.FlipREST.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@
 block discarded – undo
201 201
         {
202 202
             if(is_object($data))
203 203
             {
204
-               $data = get_object_vars($data);
204
+                $data = get_object_vars($data);
205 205
             }
206 206
 
207 207
             if(is_array($data))
Please login to merge, or discard this patch.
Http/class.WebErrorHandler.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,5 +13,5 @@
 block discarded – undo
13 13
             ->withStatus(500)
14 14
             ->withHeader('Content-Type', 'text/html')
15 15
             ->write(print_r($exception, true));
16
-   }
16
+    }
17 17
 }
Please login to merge, or discard this patch.
Http/Rest/class.DataTableAPI.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
         $params = $this->manipulateParameters($request, $odata);
93 93
         $areas = $dataTable->read($odata->filter, $odata->select, $odata->top,
94
-                                  $odata->skip, $odata->orderby, $params);
94
+                                    $odata->skip, $odata->orderby, $params);
95 95
         if(method_exists($this, 'processEntry'))
96 96
         {
97 97
             $count = count($areas);
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         $odata = $request->getAttribute('odata', new \ODataParams(array()));
130 130
         $filter = $this->getFilterForPrimaryKey($args['name']);
131 131
         $areas = $dataTable->read($filter, $odata->select, $odata->top,
132
-                                  $odata->skip, $odata->orderby);
132
+                                    $odata->skip, $odata->orderby);
133 133
         if(empty($areas))
134 134
         {
135 135
             return $response->withStatus(404);
Please login to merge, or discard this patch.