Merge pull request #713 from flightphp/use-best-practices-in-index.php

Use static callables with type hints
master
n0nag0n 1 day ago committed by GitHub
commit 128af19ae9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,7 +4,7 @@ declare(strict_types=1);
require_once __DIR__ . '/flight/autoload.php';
Flight::route('/', function () {
Flight::route('/', static function (): void {
echo 'hello world!';
});

Loading…
Cancel
Save