Completed
Push — master ( 9f5802...03a8a6 )
by Patrick
07:27 queued 05:23
created
Http/class.WebErrorHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         {
17 17
             return $response->withJson($exception, 400);
18 18
         }
19
-        if (php_sapi_name() !== "cli") {
19
+        if(php_sapi_name() !== "cli") {
20 20
           error_log($exception->__toString());
21 21
         }
22 22
         return $response
Please login to merge, or discard this patch.
Data/class.ObjectDataTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         return $this->dataTable->create($data);
35 35
     }
36 36
 
37
-    public function read($filter=false, $select=false, $count=false, $skip=false, $sort=false, $params=false)
37
+    public function read($filter = false, $select = false, $count = false, $skip = false, $sort = false, $params = false)
38 38
     {
39 39
         $res = $this->dataTable->read($filter, $select, $count, $skip, $sort, $params);
40 40
         if($res === false)
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         return $this->dataTable->delete($filter);
68 68
     }
69 69
 
70
-    public function count($filter=false)
70
+    public function count($filter = false)
71 71
     {
72 72
         return $this->dataTable->count($filter);
73 73
     }
Please login to merge, or discard this patch.
Data/class.SQLDataSet.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         $sql = "UPDATE $tablename SET $set WHERE $where";
247 247
         if($this->pdo->exec($sql) === false)
248 248
         {
249
-            if (php_sapi_name() !== "cli") {
249
+            if(php_sapi_name() !== "cli") {
250 250
               error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true));
251 251
             }
252 252
             return false;
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
         $sql = "INSERT INTO $tablename ($cols) VALUES ($set);";
288 288
         if($this->pdo->exec($sql) === false)
289 289
         {
290
-            if (php_sapi_name() !== "cli") {
290
+            if(php_sapi_name() !== "cli") {
291 291
                 error_log('DB query failed. '.print_r($this->pdo->errorInfo(), true));
292 292
             }
293 293
             return false;
Please login to merge, or discard this patch.