This commit is contained in:
2020-09-09 10:36:00 +08:00
parent 9ec911e96e
commit 286ee22d18
3 changed files with 19 additions and 4 deletions
+1 -3
View File
@@ -100,9 +100,7 @@ class Node extends Application
*/
public function afterDispatch($response)
{
return Reduce::reduce(function () use ($response) {
return $response;
}, $this->_after);
return call_user_func($this->_after, $response);
}