1 | <?php |
||
7 | class MigrateStatusCommand extends Command |
||
8 | { |
||
9 | /** @var string */ |
||
10 | protected $description = 'Show the status of all migrations.'; |
||
11 | |||
12 | /** @var \Wandu\Database\Migrator\Migrator */ |
||
13 | protected $manager; |
||
14 | |||
15 | /** |
||
16 | * @param \Wandu\Database\Migrator\Migrator $manager |
||
17 | */ |
||
18 | public function __construct(Migrator $manager) { |
||
21 | |||
22 | public function execute() |
||
40 | } |
||
41 |