1
0
Fork 0

Consistently return void

pull/8641/head
Jordi Boggiano 2020-02-28 22:27:53 +01:00 committed by GitHub
parent e61b559eb2
commit c5ce4de89e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -310,7 +310,9 @@ class Filesystem
}
if (!function_exists('proc_open')) {
return $this->copyThenRemove($source, $target);
$this->copyThenRemove($source, $target);
return;
}
if (Platform::isWindows()) {