Completed
Push — master ( 5ae7b2...20e1fc )
by Ivan
02:21
created
src/driver/odbc/Result.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
     protected $fetched = -1;
19 19
     protected $iid = null;
20 20
 
21
+    /**
22
+     * @param resource $statement
23
+     */
21 24
     public function __construct($statement, $data, $iid, $charIn = null, $charOut = null)
22 25
     {
23 26
         $this->statement = $statement;
Please login to merge, or discard this patch.
src/schema/Mapper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
             protected $changed = [];
33 33
             protected $fetched = [];
34 34
 
35
+            /**
36
+             * @param Mapper $mapper
37
+             */
35 38
             public function __construct($mapper, $definition, array $data = [])
36 39
             {
37 40
                 $this->mapper = $mapper;
Please login to merge, or discard this patch.
src/schema/TableQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -378,7 +378,7 @@
 block discarded – undo
378 378
     }
379 379
     /**
380 380
      * Group by a column (or columns)
381
-     * @param  string|array        $column the column name (or names) to group by
381
+     * @param  string        $column the column name (or names) to group by
382 382
      * @return $this
383 383
      */
384 384
     public function group($column) : self
Please login to merge, or discard this patch.