Completed
Push — master ( f140fc...d056e8 )
by Stefano
02:20
created
classes/View/PHP.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -57,6 +57,9 @@
 block discarded – undo
57 57
 class PHPContext {
58 58
     protected $data      = [];
59 59
 
60
+    /**
61
+     * @param string $path
62
+     */
60 63
     public function __construct($data=[], $path=null){
61 64
         $this->data = $data;
62 65
     }
Please login to merge, or discard this patch.
classes/SQL.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -101,6 +101,11 @@
 block discarded – undo
101 101
             $queries           = [],
102 102
             $last_exec_success = true;
103 103
 
104
+  /**
105
+   * @param string $dsn
106
+   * @param string $username
107
+   * @param string $password
108
+   */
104 109
   public function __construct($dsn, $username=null, $password=null, $options=[]){
105 110
     $this->connection = [
106 111
       'dsn'        => $dsn,
Please login to merge, or discard this patch.