Completed
Push — master ( 29a552...19e08f )
by Edgard
33:14 queued 31:36
created
src/DataReader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Returns a single column from the next row of a result set.
34 34
      * @param integer $columnIndex zero-based column index
35
-     * @return mixed the column of the current row, false if no more rows available
35
+     * @return string|false the column of the current row, false if no more rows available
36 36
      */
37 37
     public function readColumn($columnIndex)
38 38
     {
Please login to merge, or discard this patch.
src/Schema.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -96,6 +96,8 @@  discard block
 block discarded – undo
96 96
 
97 97
     /**
98 98
      * @inheritdoc
99
+     * @param TableSchema $table
100
+     * @param string $name
99 101
      */
100 102
     protected function resolveTableNames($table, $name)
101 103
     {
@@ -170,6 +172,7 @@  discard block
 block discarded – undo
170 172
 
171 173
     /**
172 174
      * @inheritdoc
175
+     * @param TableSchema $table
173 176
      */
174 177
     protected function findColumns($table)
175 178
     {
@@ -260,6 +263,7 @@  discard block
 block discarded – undo
260 263
 
261 264
     /**
262 265
      * @inheritdoc
266
+     * @param TableSchema $table
263 267
      */
264 268
     protected function findConstraints($table)
265 269
     {
Please login to merge, or discard this patch.