diff --git a/src/main/php/web/Route.class.php b/src/main/php/web/Route.class.php index c65ab35a..26477ade 100755 --- a/src/main/php/web/Route.class.php +++ b/src/main/php/web/Route.class.php @@ -3,6 +3,7 @@ use web\handler\Call; use web\routing\RouteMatch; +/** @deprecated */ class Route { private $match, $handler; diff --git a/src/main/php/web/routing/Path.class.php b/src/main/php/web/routing/Path.class.php index 1b44b4d7..da98fed3 100755 --- a/src/main/php/web/routing/Path.class.php +++ b/src/main/php/web/routing/Path.class.php @@ -3,6 +3,7 @@ /** * Matches a path suffix * + * @deprecated * @test xp://web.unittest.routing.PathTest */ class Path implements RouteMatch { diff --git a/src/main/php/web/routing/RouteMatch.class.php b/src/main/php/web/routing/RouteMatch.class.php index aafda14a..2e3fca50 100755 --- a/src/main/php/web/routing/RouteMatch.class.php +++ b/src/main/php/web/routing/RouteMatch.class.php @@ -1,5 +1,6 @@