Merge pull request #8641 from souweb22/delete_return
delete 'return' and 'spaces' in Filesystem.phppull/8661/head
commit
2285a79c63
|
@ -310,7 +310,9 @@ class Filesystem
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!function_exists('proc_open')) {
|
if (!function_exists('proc_open')) {
|
||||||
return $this->copyThenRemove($source, $target);
|
$this->copyThenRemove($source, $target);
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Platform::isWindows()) {
|
if (Platform::isWindows()) {
|
||||||
|
@ -340,7 +342,7 @@ class Filesystem
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->copyThenRemove($source, $target);
|
$this->copyThenRemove($source, $target);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue