1 | <?php |
||
8 | class ArchiveCommand extends AbstractCommand |
||
9 | { |
||
10 | /** |
||
11 | * Migrator instance. |
||
12 | * |
||
13 | * @var Migrator |
||
14 | */ |
||
15 | protected $migrator; |
||
16 | |||
17 | /** |
||
18 | * Constructor. |
||
19 | * |
||
20 | * @param Migrator $migrator |
||
21 | */ |
||
22 | public function __construct(Migrator $migrator) |
||
28 | |||
29 | /** |
||
30 | * Configures the current command. |
||
31 | */ |
||
32 | protected function configure() |
||
38 | |||
39 | /** |
||
40 | * Execute the console command. |
||
41 | * |
||
42 | * @return null|int |
||
43 | */ |
||
44 | protected function fire() |
||
60 | } |
||
61 |