1
0
mirror of https://github.com/dannyvankooten/AltoRouter.git synced 2025-08-10 10:24:32 +02:00

Update AltoRouter.php

fix for php 8.4 and keep php 7.3 support
This commit is contained in:
Petter
2024-12-16 14:13:20 +01:00
committed by GitHub
parent 71389237e5
commit 5159909a81

View File

@@ -117,7 +117,7 @@ class AltoRouter
* @param string $name Optional name of this route. Supply if you want to reverse route this url in your application. * @param string $name Optional name of this route. Supply if you want to reverse route this url in your application.
* @throws Exception * @throws Exception
*/ */
public function map(string $method, string $route, $target, string|null $name = null) public function map(string $method, string $route, $target, ?string $name = null)
{ {
$this->routes[] = [$method, $route, $target, $name]; $this->routes[] = [$method, $route, $target, $name];
@@ -184,7 +184,7 @@ class AltoRouter
* @param string $requestMethod * @param string $requestMethod
* @return array|boolean Array with route information on success, false on failure (no match). * @return array|boolean Array with route information on success, false on failure (no match).
*/ */
public function match(string|null $requestUrl = null, string|null $requestMethod = null) public function match(?string $requestUrl = null, ?string $requestMethod = null)
{ {
$params = []; $params = [];