8000 Improve static analysis by adding type hints for $app in artisan and public/index.php by AJenbo · Pull Request #6531 · laravel/laravel · GitHub
[go: up one dir, main page]

Skip to content

Improve static analysis by adding type hints for $app in artisan and public/index.php #6531

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its ma 8000 intainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 5, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update index.php
  • Loading branch information
taylorotwell authored Feb 5, 2025
commit 6a0fe7e821c6359f5a73cdf5865021623dc96510
1 change: 1 addition & 0 deletions public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@
// Bootstrap Laravel and handle the request...
/** @var Application $app */
$app = require_once __DIR__.'/../bootstrap/app.php';

$app->handleRequest(Request::capture());
0