Completed
Push — develop ( f26ea3...e42426 )
by Patrick
14s queued 10s
created
Http/Rest/class.SerializationMiddleware.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
         }
25 25
     }
26 26
 
27
+    /**
28
+     * @param string $param
29
+     */
27 30
     private function getParamFromArrayIfSet($array, $param, $default = null)
28 31
     {
29 32
         if(isset($array[$param]))
Please login to merge, or discard this patch.
Data/class.SQLDataSet.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
     {
40 40
         if(isset($this->params['user']))
41 41
         {
42
-	     $this->pdo = new \PDO($this->params['dsn'], $this->params['user'], $this->params['pass']);
43
-	}
44
-	else
45
-	{
46
-	     $this->pdo = new \PDO($this->params['dsn']);
42
+            $this->pdo = new \PDO($this->params['dsn'], $this->params['user'], $this->params['pass']);
43
+    }
44
+    else
45
+    {
46
+            $this->pdo = new \PDO($this->params['dsn']);
47 47
         }
48 48
     }
49 49
 
Please login to merge, or discard this patch.