Skip to content

Commit

Permalink
Fix session store in L5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dkulyk authored Jan 27, 2017
1 parent 23e1628 commit c237c7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Session/LaravelSession.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function get($key, $empty = null)
*/
public function set($key, $data)
{
$this->store->set($key, $data);
$this->store->put($key, $data);

return $this;
}
Expand All @@ -60,4 +60,4 @@ public function remove($key)

return $this;
}
}
}

0 comments on commit c237c7e

Please sign in to comment.