This commit is contained in:
2021-09-06 17:39:13 +08:00
parent 730b840409
commit 76c425cf22
3 changed files with 16 additions and 13 deletions
+3 -3
View File
@@ -127,12 +127,12 @@ class Pipeline
/**
* @param $request
* @return mixed
* @throws Exception
*/
public function interpreter(): mixed
public function interpreter($request): mixed
{
return call_user_func($this->pipeline, request());
return call_user_func($this->pipeline, $request);
}