@@ -4,7 +4,7 @@ |
||
4 | 4 | |
5 | 5 | class Application extends \Symfony\Component\Console\Application |
6 | 6 | { |
7 | - const LOGO = <<<TXT |
|
7 | + const LOGO = <<<TXT |
|
8 | 8 | ___ __ _ ___ |
9 | 9 | / _ | ________/ / (_) __/ _ \ |
10 | 10 | / __ |/ __/ __/ _ \/ / |/ / , _/ |
@@ -27,7 +27,7 @@ |
||
27 | 27 | $archivr = new ArchivR($configuration); |
28 | 28 | $archivr->dump( |
29 | 29 | $input->getArgument('path'), |
30 | - $input->getOption( 'revision') ? (int)$input->getOption('revision') : null, |
|
30 | + $input->getOption('revision') ? (int)$input->getOption('revision') : null, |
|
31 | 31 | $input->getOption('vault'), |
32 | 32 | new SynchronizationProgressListener($output) |
33 | 33 | ); |
@@ -33,7 +33,7 @@ |
||
33 | 33 | |
34 | 34 | $started = time(); |
35 | 35 | |
36 | - while(true) |
|
36 | + while (true) |
|
37 | 37 | { |
38 | 38 | if (!$this->storageDriver->exists($lockFileName)) |
39 | 39 | { |
@@ -73,7 +73,7 @@ |
||
73 | 73 | |
74 | 74 | $configuration->addVault($vaultConfig); |
75 | 75 | } |
76 | - while($this->outputStyle->choice('Add another vault?', ['y', 'n'], 'n') === 'y'); |
|
76 | + while ($this->outputStyle->choice('Add another vault?', ['y', 'n'], 'n') === 'y'); |
|
77 | 77 | |
78 | 78 | |
79 | 79 | $skipDefaults = !$input->getOption('writeDefaults'); |