corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-07 b62315aee0d26f98b1c1db083dae4ae73a110fad
src/router.php
@@ -9,6 +9,14 @@
            "params"=> $params
        ];
    }
    public function match (string $path,): array|bool {
        foreach ($this->routes as $route) {
            if ($route["path"] === $path) {
                return $route["params"];
            }
        }
        return false;
    }
}