Completed
Pull Request — master (#16)
by
unknown
25:14
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   +6 added lines patch added patch discarded remove patch
@@ -98,6 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
     /**
100 100
      * @inheritdoc
101
+     * @param TableSchema $table
101 102
      */
102 103
     protected function resolveTableNames($table, $name)
103 104
     {
@@ -182,6 +183,7 @@  discard block
 block discarded – undo
182 183
 
183 184
     /**
184 185
      * @inheritdoc
186
+     * @param TableSchema $table
185 187
      */
186 188
     protected function findColumns($table)
187 189
     {
@@ -271,6 +273,7 @@  discard block
 block discarded – undo
271 273
 
272 274
     /**
273 275
      * @inheritdoc
276
+     * @param TableSchema $table
274 277
      */
275 278
     protected function findConstraints($table)
276 279
     {
@@ -862,6 +865,9 @@  discard block
 block discarded – undo
862 865
         return $result;
863 866
     }
864 867
 
868
+    /**
869
+     * @param boolean $multiple
870
+     */
865 871
     protected function normalizePdoRowKeyCase(array $row, $multiple)
866 872
     {
867 873
         if ($this->db->getSlavePdo()->getAttribute(\PDO::ATTR_CASE) === \PDO::CASE_LOWER) {
Please login to merge, or discard this patch.