Completed
Push — develop ( 3360e2...a33213 )
by Paul
02:07
created
src/Executor/FileExecutor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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()) {
Please login to merge, or discard this patch.