Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 10 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
14 | View Code Duplication | protected function configure() |
|
15 | { |
||
16 | parent::configure(); |
||
17 | |||
18 | $this->setName('dump'); |
||
19 | $this->setDescription('Dump the contents of a vault.'); |
||
20 | $this->addArgument('path', InputArgument::REQUIRED, 'Target path.'); |
||
21 | $this->addOption('revision', 'r', InputOption::VALUE_REQUIRED, 'Restore given revision. Defaults to last revision.'); |
||
22 | $this->addOption('vault', null, InputOption::VALUE_REQUIRED, 'Vault to use to download state from.'); |
||
23 | } |
||
24 | |||
39 |