Completed
Push — master ( 80778e...ce3c56 )
by Corey
15s queued 12s
created
src/Phinx/Migration/Manager/Environment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
     /**
204 204
      * Gets the environment's options.
205 205
      *
206
-     * @return array
206
+     * @return AdapterInterface
207 207
      */
208 208
     public function getOptions()
209 209
     {
Please login to merge, or discard this patch.
src/Phinx/Db/Plan/Solver/ActionSplitter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      *
66 66
      * @param \Phinx\Db\Plan\AlterTable $alter The collection of actions to inspect
67 67
      *
68
-     * @return \Phinx\Db\Plan\AlterTable[] A list of AlterTable that can be executed without
68
+     * @return AlterTable[] A list of AlterTable that can be executed without
69 69
      * this type of conflict
70 70
      */
71 71
     public function __invoke(AlterTable $alter)
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
@@ -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/Db/Adapter/PdoAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -577,7 +577,7 @@
 block discarded – undo
577 577
      *
578 578
      * @param int $attribute One of the PDO::ATTR_* constants
579 579
      *
580
-     * @return mixed
580
+     * @return string
581 581
      */
582 582
     public function getAttribute($attribute)
583 583
     {
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.