Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 32b2973

Browse files
authored
replace ImmMap by KeyedContainer (#19)
1 parent 7692f9c commit 32b2973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/router/BaseRouter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
abstract class BaseRouter<+TResponder> {
1717
abstract protected function getRoutes(
18-
): ImmMap<HttpMethod, ImmMap<string, TResponder>>;
18+
): KeyedContainer<HttpMethod, KeyedContainer<string, TResponder>>;
1919

2020
final public function routeMethodAndPath(
2121
HttpMethod $method,

0 commit comments

Comments
 (0)