Skip to content

Commit

Permalink
Merge pull request #28739 from cybercog/fix/session-contract-return-type
Browse files Browse the repository at this point in the history
[5.8] Fix return type of Session Store save method
  • Loading branch information
taylorotwell authored Jun 5, 2019
2 parents c78796c + 9293fec commit 5ed0b0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Contracts/Session/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function start();
/**
* Save the session data to storage.
*
* @return bool
* @return void
*/
public function save();

Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Session/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function prepareForUnserialize($data)
/**
* Save the session data to storage.
*
* @return bool
* @return void
*/
public function save()
{
Expand Down

0 comments on commit 5ed0b0a

Please sign in to comment.