From a9a56333117a3e2c7983fa74d4b0d84092e4f302 Mon Sep 17 00:00:00 2001 From: Steve Date: Tue, 6 Jun 2017 16:46:09 +0200 Subject: [PATCH] Route.php : implements method isDeprecated() --- src/Service/Router/Route.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Service/Router/Route.php b/src/Service/Router/Route.php index 3db61a1..c4d453e 100644 --- a/src/Service/Router/Route.php +++ b/src/Service/Router/Route.php @@ -340,6 +340,14 @@ public function instanceFetch() return $this; } + /** + * @return bool + */ + public function isDeprecated() + { + return $this->deprecated; + } + /** * @return boolean */