@@ -79,20 +79,19 @@ public static function get(ContainerInterface $container, string $id, ContainerC
7979 $ container ->get (UpdateRunner::class),
8080 $ container ->get (MigrationService::class),
8181 $ container ->get (Migrator::class),
82- $ container ->get (ConsoleMigrationInformer::class),
8382 );
8483
8584 case DownCommand::class:
8685 return new DownCommand (
8786 $ container ->get (DownRunner::class),
8887 $ container ->get (MigrationService::class),
8988 $ container ->get (Migrator::class),
90- $ container ->get (ConsoleMigrationInformer::class),
9189 );
9290
9391 case NewCommand::class:
9492 return new NewCommand (
9593 $ container ->get (MigrationService::class),
94+ $ container ->get (Migrator::class),
9695 );
9796
9897 case HistoryCommand::class:
@@ -105,7 +104,6 @@ public static function get(ContainerInterface $container, string $id, ContainerC
105104 return new RedoCommand (
106105 $ container ->get (MigrationService::class),
107106 $ container ->get (Migrator::class),
108- $ container ->get (ConsoleMigrationInformer::class),
109107 $ container ->get (DownRunner::class),
110108 $ container ->get (UpdateRunner::class),
111109 );
0 commit comments