Completed
Push — master ( 91a49a...60dbaf )
by Zach
9s
created
src/Migrations/Migrator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @param Config                       $config
53 53
      * @param ConnectionResolver           $resolver
54
-     * @param MigrationRepositoryInterface $repository
54
+     * @param MigrationRepository $repository
55 55
      */
56 56
     public function __construct(
57 57
         Config $config,
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
     /**
287 287
      * Set connection to database on object.
288 288
      *
289
-     * @return Pdo
289
+     * @return Migrator
290 290
      */
291 291
     public function setConnection()
292 292
     {
Please login to merge, or discard this patch.
src/Commands/Migrate.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,15 +17,15 @@
 block discarded – undo
17 17
     protected function configure()
18 18
     {
19 19
         $this->setName('migrate')
20
-         ->setDescription('Run the database migrations.')
21
-         ->setHelp('This command allows you to run migrations.')
22
-         ->addOption(
20
+            ->setDescription('Run the database migrations.')
21
+            ->setHelp('This command allows you to run migrations.')
22
+            ->addOption(
23 23
             'rollback',
24 24
             null,
25 25
             InputOption::VALUE_NONE,
26 26
             'Rollback migrations by given number of steps.'
27 27
         )
28
-         ->addOption(
28
+            ->addOption(
29 29
             'steps',
30 30
             null,
31 31
             InputOption::VALUE_OPTIONAL,
Please login to merge, or discard this patch.