This commit is contained in:
as2252258@163.com
2021-07-28 01:33:45 +08:00
parent d2580b69ec
commit 3f0e116fb2
+2 -6
View File
@@ -129,13 +129,10 @@ class Node extends HttpService
*/ */
#[Pure] private function createDispatch(): Closure #[Pure] private function createDispatch(): Closure
{ {
return $this->normalHandler($this, $this->handler);
/** @var Aop $aop */ /** @var Aop $aop */
$aop = Snowflake::app()->get('aop'); $aop = Snowflake::app()->get('aop');
if ($this->handler instanceof Closure || !$aop->hasAop($this->handler)) { if ($this->handler instanceof Closure || !$aop->hasAop($this->handler)) {
return $this->normalHandler($this); return $this->normalHandler($this->handler);
} else { } else {
return $this->aopHandler($aop->getAop($this->handler), $this); return $this->aopHandler($aop->getAop($this->handler), $this);
} }
@@ -164,7 +161,7 @@ class Node extends HttpService
* @param $handler * @param $handler
* @return Closure * @return Closure
*/ */
private function normalHandler($application, $handler): Closure private function normalHandler($handler): Closure
{ {
return static function () use ($handler) { return static function () use ($handler) {
return call_user_func($handler); return call_user_func($handler);
@@ -312,7 +309,6 @@ class Node extends HttpService
*/ */
public function dispatch(): mixed public function dispatch(): mixed
{ {
Context::setContext('dispatch-param', func_get_args());
if (empty($this->callback)) { if (empty($this->callback)) {
return Json::to(404, $this->errorMsg()); return Json::to(404, $this->errorMsg());
} }