Skip to content

Commit 72ac8d0

Browse files
committed
fix #14
1 parent 134612b commit 72ac8d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Process/GoTaskProcess.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function handle(): void
7575
$argArr[] = '-go2php-address';
7676
$argArr[] = $this->config->get('gotask.go2php.address', '127.0.0.1:6002');
7777
}
78-
array_push($argArr, ...$args);
78+
array_merge($argArr, $args);
7979
$this->process->exec($executable, $argArr);
8080
}
8181
}

0 commit comments

Comments
 (0)