Completed
Pull Request — master (#1904)
by
unknown
02:37 queued 01:08
created
src/Phinx/Db/Table.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -284,8 +284,8 @@
 block discarded – undo
284 284
      *
285 285
      * Valid options can be: limit, default, null, precision or scale.
286 286
      *
287
-     * @param string|\Phinx\Db\Table\Column $columnName Column Name
288
-     * @param string|\Phinx\Util\Literal|null $type Column Type
287
+     * @param string $columnName Column Name
288
+     * @param string $type Column Type
289 289
      * @param array $options Column Options
290 290
      *
291 291
      * @throws \InvalidArgumentException
Please login to merge, or discard this patch.
src/Phinx/Config/Config.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -46,6 +46,7 @@
 block discarded – undo
46 46
 
47 47
     /**
48 48
      * @inheritDoc
49
+     * @param string $configFilePath
49 50
      */
50 51
     public function __construct(array $configArray, $configFilePath = null)
51 52
     {
Please login to merge, or discard this patch.
src/Phinx/Db/Adapter/MysqlAdapter.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -886,6 +886,7 @@
 block discarded – undo
886 886
      * {@inheritDoc}
887 887
      *
888 888
      * @throws \Phinx\Db\Adapter\UnsupportedColumnTypeException
889
+     * @param integer $limit
889 890
      */
890 891
     public function getSqlType($type, $limit = null)
891 892
     {
Please login to merge, or discard this patch.
src/Phinx/Db/Adapter/SQLiteAdapter.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -346,6 +346,7 @@  discard block
 block discarded – undo
346 346
 
347 347
     /**
348 348
      * @inheritDoc
349
+     * @param string $tableName
349 350
      */
350 351
     public function hasTable($tableName)
351 352
     {
@@ -1405,6 +1406,7 @@  discard block
 block discarded – undo
1405 1406
      * {@inheritDoc}
1406 1407
      *
1407 1408
      * @throws \Phinx\Db\Adapter\UnsupportedColumnTypeException
1409
+     * @param string $type
1408 1410
      */
1409 1411
     public function getSqlType($type, $limit = null)
1410 1412
     {
Please login to merge, or discard this patch.
src/Phinx/Db/Adapter/SqlServerAdapter.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -535,6 +535,7 @@  discard block
 block discarded – undo
535 535
      * {@inheritDoc}
536 536
      *
537 537
      * @throws \InvalidArgumentException
538
+     * @param string|null $newColumnName
538 539
      */
539 540
     protected function getRenameColumnInstructions($tableName, $columnName, $newColumnName)
540 541
     {
@@ -1054,6 +1055,7 @@  discard block
 block discarded – undo
1054 1055
      * {@inheritDoc}
1055 1056
      *
1056 1057
      * @throws \Phinx\Db\Adapter\UnsupportedColumnTypeException
1058
+     * @param string $type
1057 1059
      */
1058 1060
     public function getSqlType($type, $limit = null)
1059 1061
     {
Please login to merge, or discard this patch.