Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
13 | View Code Duplication | protected function configure() |
|
14 | { |
||
15 | parent::configure(); |
||
16 | |||
17 | $this->setName('restore'); |
||
18 | $this->setDescription('Restores the local state from the vault state.'); |
||
19 | $this->addOption('revision', 'r', InputOption::VALUE_REQUIRED, 'Restore given revision. Defaults to last revision.'); |
||
20 | $this->addOption('vault', null, InputOption::VALUE_REQUIRED, 'Vault to use to download state from.'); |
||
21 | } |
||
22 | |||
36 |