This commit is contained in:
2021-04-19 17:27:07 +08:00
parent c19b3742d6
commit 905a1c9201
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ class Node extends HttpService
public function createDispatch(): Closure
{
return function () {
return Dispatch::create($this->handler, func_get_args())->dispatch();
return Dispatch::create($this->handler, ...func_get_args())->dispatch();
};
}