diff options
-rw-r--r-- | src/Controller/RouteAction.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Controller/RouteAction.php b/src/Controller/RouteAction.php index 330e1a9..32da273 100644 --- a/src/Controller/RouteAction.php +++ b/src/Controller/RouteAction.php @@ -91,7 +91,7 @@ trait RouteAction * } * </code> */ - protected function beforeAction() + protected function beforeActionRun() { } @@ -109,7 +109,7 @@ trait RouteAction return $this->notFound(); } - $this->beforeAction(); + $this->beforeActionRun(); if ($this->isSuccessful()) { $args = isset($route->args) ? $route->args |