Explorar o código

Merge pull request #8641 from souweb22/delete_return

delete 'return' and 'spaces' in Filesystem.php
Jordi Boggiano %!s(int64=5) %!d(string=hai) anos
pai
achega
2285a79c63
Modificáronse 1 ficheiros con 6 adicións e 4 borrados
  1. 6 4
      src/Composer/Util/Filesystem.php

+ 6 - 4
src/Composer/Util/Filesystem.php

@@ -206,7 +206,7 @@ class Filesystem
                 usleep(350000);
                 $unlinked = @$this->unlinkImplementation($path);
             }
-            
+
             if (!$unlinked) {
                 $error = error_get_last();
                 $message = 'Could not delete '.$path.': ' . @$error['message'];
@@ -237,7 +237,7 @@ class Filesystem
                 usleep(350000);
                 $deleted = @rmdir($path);
             }
-            
+
             if (!$deleted) {
                 $error = error_get_last();
                 $message = 'Could not delete '.$path.': ' . @$error['message'];
@@ -310,7 +310,9 @@ class Filesystem
         }
 
         if (!function_exists('proc_open')) {
-            return $this->copyThenRemove($source, $target);
+            $this->copyThenRemove($source, $target);
+            
+            return;
         }
 
         if (Platform::isWindows()) {
@@ -340,7 +342,7 @@ class Filesystem
             }
         }
 
-        return $this->copyThenRemove($source, $target);
+        $this->copyThenRemove($source, $target);
     }
 
     /**