diff --git a/src/Session/LaravelSession.php b/src/Session/LaravelSession.php index 41875f6..768896c 100644 --- a/src/Session/LaravelSession.php +++ b/src/Session/LaravelSession.php @@ -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; } @@ -60,4 +60,4 @@ public function remove($key) return $this; } -} \ No newline at end of file +}