We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 134612b commit 72ac8d0Copy full SHA for 72ac8d0
src/Process/GoTaskProcess.php
@@ -75,7 +75,7 @@ public function handle(): void
75
$argArr[] = '-go2php-address';
76
$argArr[] = $this->config->get('gotask.go2php.address', '127.0.0.1:6002');
77
}
78
- array_push($argArr, ...$args);
+ array_merge($argArr, $args);
79
$this->process->exec($executable, $argArr);
80
81
0 commit comments