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