This commit is contained in:
2020-09-09 10:42:16 +08:00
parent 286ee22d18
commit 8ae7ca9a18
4 changed files with 34 additions and 6 deletions
+2 -1
View File
@@ -100,7 +100,8 @@ class Node extends Application
*/
public function afterDispatch($response)
{
return call_user_func($this->_after, $response);
$callback = Reduce::after($this->_after);
return $callback($response);
}