Skip to content

Commit d20a3af

Browse files
committed
Fix Process::__construct() must be of the type array, string given
1 parent 8dc21f3 commit d20a3af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Laravel55ServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private function registerCompressorProvider() {
9797
*/
9898
private function registerShellProcessor() {
9999
$this->app->bind(\BackupManager\ShellProcessing\ShellProcessor::class, function () {
100-
return new ShellProcessor(new Process('', null, null, null, null));
100+
return new ShellProcessor(new Process([], null, null, null, null));
101101
});
102102
}
103103

0 commit comments

Comments
 (0)