@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | |
117 | 117 | public function restore(int $toRevision = null, string $fromVault = null, SynchronizationProgressListenerInterface $progressListener = null): OperationResultList |
118 | 118 | { |
119 | - $this->getLogger()->notice(sprintf("Restoring from %s...", $toRevision ? "r{$toRevision}": 'latest revision')); |
|
119 | + $this->getLogger()->notice(sprintf("Restoring from %s...", $toRevision ? "r{$toRevision}" : 'latest revision')); |
|
120 | 120 | |
121 | 121 | $vault = $this->getVaultForDownload($toRevision, $fromVault); |
122 | 122 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | public function dump(string $targetPath, int $revision = null, string $fromVault = null, SynchronizationProgressListenerInterface $progressListener = null): OperationResultList |
134 | 134 | { |
135 | - $this->getLogger()->notice(sprintf("Dumping from %s to {$targetPath}...", $revision ? "r{$revision}": 'latest revision')); |
|
135 | + $this->getLogger()->notice(sprintf("Dumping from %s to {$targetPath}...", $revision ? "r{$revision}" : 'latest revision')); |
|
136 | 136 | |
137 | 137 | $vault = $this->getVaultForDownload($revision, $fromVault); |
138 | 138 |