Completed
Push — master ( e258ca...1fbbc1 )
by Edgard
02:39
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   +5 added lines patch added patch discarded remove patch
@@ -118,6 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
     /**
120 120
      * @inheritdoc
121
+     * @param string $name
121 122
      */
122 123
     public function quoteSimpleColumnName($name)
123 124
     {
@@ -142,6 +143,8 @@  discard block
 block discarded – undo
142 143
 
143 144
     /**
144 145
      * @inheritdoc
146
+     * @param TableSchema $table
147
+     * @param string $name
145 148
      */
146 149
     protected function resolveTableNames($table, $name)
147 150
     {
@@ -216,6 +219,7 @@  discard block
 block discarded – undo
216 219
 
217 220
     /**
218 221
      * @inheritdoc
222
+     * @param TableSchema $table
219 223
      */
220 224
     protected function findColumns($table)
221 225
     {
@@ -306,6 +310,7 @@  discard block
 block discarded – undo
306 310
 
307 311
     /**
308 312
      * @inheritdoc
313
+     * @param TableSchema $table
309 314
      */
310 315
     protected function findConstraints($table)
311 316
     {
Please login to merge, or discard this patch.