@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public function invoke(string $sourcePath, string $targetPath, string $name): bool |
86 | 86 | { |
87 | - if (! $this->fileValidator->validate($sourcePath)) { |
|
87 | + if (!$this->fileValidator->validate($sourcePath)) { |
|
88 | 88 | return false; |
89 | 89 | } |
90 | 90 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | public function checkTargetPath(string $targetPath): void |
125 | 125 | { |
126 | 126 | if ($this->fileSystem->has($targetPath)) { |
127 | - if (! $this->config->hasOverwrite()) { |
|
127 | + if (!$this->config->hasOverwrite()) { |
|
128 | 128 | throw new FileExistsException(sprintf('The target file "%s" already exists', $targetPath)); |
129 | 129 | } |
130 | 130 | if ($this->config->hasBackup()) { |