Skip to content

Commit

Permalink
fix user and request info not persisting (#17584)
Browse files Browse the repository at this point in the history
  • Loading branch information
devcircus authored and taylorotwell committed Jan 26, 2017
1 parent 1170fc2 commit 8aacf5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Session/DatabaseSessionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ protected function getDefaultPayload($data)
return $payload;
}

return tap($payload, function ($payload) {
return tap($payload, function (&$payload) {
$this->addUserInformation($payload)
->addRequestInformation($payload);
});
Expand Down

0 comments on commit 8aacf5c

Please sign in to comment.