Completed
Push — master ( 8d2c4d...77f170 )
by Arne
01:48
created
src/Cli/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
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
  / __ |/ __/ __/ _ \/ / |/ / , _/
Please login to merge, or discard this patch.
src/Vault.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -427,7 +427,7 @@
 block discarded – undo
427 427
     public function dump(string $targetPath, int $revision = null, SynchronizationProgressListenerInterface $progressListener = null): OperationResultCollection
428 428
     {
429 429
         $originalLocalPath = $this->localPath;
430
-        $this->localPath =  rtrim($this->expandTildePath($targetPath), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
430
+        $this->localPath = rtrim($this->expandTildePath($targetPath), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
431 431
 
432 432
         try
433 433
         {
Please login to merge, or discard this patch.
src/Cli/Command/DumpCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.