From 32b29737739ab9b883d0a598933f7514ccb98f17 Mon Sep 17 00:00:00 2001 From: Saif Eddin G <29315886+azjezz@users.noreply.github.com> Date: Mon, 10 Feb 2020 16:57:13 +0100 Subject: [PATCH] replace `ImmMap` by `KeyedContainer` (#19) --- src/router/BaseRouter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/BaseRouter.php b/src/router/BaseRouter.php index 650bab8..ea8e955 100644 --- a/src/router/BaseRouter.php +++ b/src/router/BaseRouter.php @@ -15,7 +15,7 @@ abstract class BaseRouter<+TResponder> { abstract protected function getRoutes( - ): ImmMap>; + ): KeyedContainer>; final public function routeMethodAndPath( HttpMethod $method,