8000 [9.x] Fix Symfony v6 breaking changes by driesvints · Pull Request #38376 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[9.x] Fix Symfony v6 breaking changes #38376

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers 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
Aug 16, 2021
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
Next Next commit
Fix session handling
  • Loading branch information
driesvints committed Aug 16, 2021
commit 86bcb6f81414dbe4d435fa90fb369cac3f727e3a
4 changes: 2 additions & 2 deletions src/Illuminate/Http/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ public static function createFrom(self $from, $to = null)

$request->setJson($from->json());

if ($session = $from->getSession()) {
$request->setLaravelSession($session);
if ($from->hasSession()) {
$request->setLaravelSession($from->getSession());
}

$request->setUserResolver($from->getUserResolver());
Expand Down
0