Merge branch 'master' into php8-named-arguments-support

pull/548/head
fadrian06 2 weeks ago committed by GitHub
commit 72ac51e141
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -36,6 +36,9 @@ require_once __DIR__ . '/autoload.php';
* # Class registration
* @method EventDispatcher eventDispatcher() Gets event dispatcher
*
* # Class registration
* @method EventDispatcher eventDispatcher() Gets event dispatcher
*
* # Routing
* @method static Route route(string $pattern, callable|string|array{0: class-string, 1: string} $callback, bool $pass_route = false, string $alias = '')
* Maps a URL pattern to a callback with all applicable methods.

@ -12,6 +12,7 @@ use flight\net\Response;
use flight\util\Collection;
use InvalidArgumentException;
use JsonException;
use PDOException;
use PHPUnit\Framework\TestCase;
use tests\classes\Container;
use tests\classes\ContainerDefault;

Loading…
Cancel
Save