Skip to content

Commit

Permalink
Use correct getter
Browse files Browse the repository at this point in the history
  • Loading branch information
uuf6429 committed Jan 8, 2025
1 parent 786d9b7 commit a1950ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FixturesKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private function prepareSession(Request $request): void
$cookies = $request->cookies;

if ($cookies->has($session->getName())) {
$session->setId((string) $cookies->getString($session->getName()));
$session->setId((string) $cookies->get($session->getName()));
} else {
$session->migrate(false);
}
Expand Down

0 comments on commit a1950ba

Please sign in to comment.