diff --git a/src/Service/Router.php b/src/Service/Router.php index 6518c74..64e71e0 100644 --- a/src/Service/Router.php +++ b/src/Service/Router.php @@ -84,7 +84,7 @@ class Router foreach ($this->dynamicRoutes as $route) { // PHPStorm doesn't know that $parameters are always available, - // (as it is a dynamic route) so I init the array just to make PHPStorm happy. + // (as it this are dynamic routes) so I init the array just to make PHPStorm happy. $parameters = []; if (preg_match(pattern: $route->getRegex(), subject: $requestUri, matches: $matches)) { foreach ($route->getParameters() as $id => $parameter) {