Completed
Push — master ( ed4803...036ee8 )
by Ivan
02:27
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/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.
src/schema/Mapper.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,6 +43,10 @@  discard block
 block discarded – undo
43 43
             protected $changed = [];
44 44
             protected $fetched = [];
45 45
 
46
+            /**
47
+             * @param Mapper $mapper
48
+             * @param Table $definition
49
+             */
46 50
             public function __construct($mapper, $definition, array $data = [])
47 51
             {
48 52
                 $this->mapper = $mapper;
@@ -156,7 +160,7 @@  discard block
 block discarded – undo
156 160
     /**
157 161
      * Get a collection of entities
158 162
      *
159
-     * @param TableQuery $iterator
163
+     * @param TableQueryIterator $iterator
160 164
      * @param Table $definition
161 165
      * @return Collection
162 166
      */
Please login to merge, or discard this patch.