Completed
Pull Request — master (#1201)
by Mark
03:13
created
src/Phinx/Db/Adapter/SQLiteAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1042,7 +1042,7 @@
 block discarded – undo
1042 1042
     /**
1043 1043
      * Gets the SQLite Index Definition for an Index object.
1044 1044
      *
1045
-     * @param Index $table Index
1045
+     * @param Table $table Index
1046 1046
      * @return string
1047 1047
      */
1048 1048
     protected function getIndexSqlDefinition(Table $table, Index $index)
Please login to merge, or discard this patch.
src/Phinx/Db/Table.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     /**
282 282
      * Gets an array of foreign keys waiting to be commited.
283 283
      *
284
-     * @return array|ForeignKey[]
284
+     * @return ForeignKey[]
285 285
      */
286 286
     public function getForeignKeys()
287 287
     {
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
      *
333 333
      * Valid options can be: limit, default, null, precision or scale.
334 334
      *
335
-     * @param string|Column $columnName Column Name
335
+     * @param string $columnName Column Name
336 336
      * @param string $type Column Type
337 337
      * @param array $options Column Options
338 338
      * @throws \RuntimeException
@@ -495,7 +495,6 @@  discard block
 block discarded – undo
495 495
      * Checks to see if an index exists.
496 496
      *
497 497
      * @param string|array $columns Columns
498
-     * @param array        $options Options
499 498
      * @return bool
500 499
      */
501 500
     public function hasIndex($columns)
Please login to merge, or discard this patch.