Completed
Pull Request — master (#1895)
by Corey
05:33
created
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/PdoAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -554,7 +554,7 @@
 block discarded – undo
554 554
      *
555 555
      * @see http://php.net/manual/en/pdo.getattribute.php
556 556
      * @param int $attribute One of the PDO::ATTR_* constants
557
-     * @return mixed
557
+     * @return string
558 558
      */
559 559
     public function getAttribute($attribute)
560 560
     {
Please login to merge, or discard this patch.
src/Phinx/Db/Table.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -277,8 +277,8 @@
 block discarded – undo
277 277
      *
278 278
      * Valid options can be: limit, default, null, precision or scale.
279 279
      *
280
-     * @param string|\Phinx\Db\Table\Column $columnName Column Name
281
-     * @param string|\Phinx\Util\Literal|null $type Column Type
280
+     * @param string $columnName Column Name
281
+     * @param string $type Column Type
282 282
      * @param array $options Column Options
283 283
      * @throws \InvalidArgumentException
284 284
      * @return $this
Please login to merge, or discard this patch.