Skip to content

Commit

Permalink
Remove return self.
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Apr 6, 2018
1 parent 35b3cd9 commit 58fa0d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MessageBag.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class MessageBag extends Message implements MessageBagContract
*
* @return $this
*/
public function setSessionStore(Session $session): self
public function setSessionStore(Session $session)
{
$this->session = $session;
$this->instance = null;
Expand Down Expand Up @@ -70,7 +70,7 @@ public function extend(Closure $callback)
*
* @return static
*/
public function retrieve(): self
public function retrieve()
{
$messages = null;

Expand Down

0 comments on commit 58fa0d6

Please sign in to comment.