datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
422 B
24 lines
422 B
6 years ago
|
<?php namespace AdamWathan\EloquentOAuth;
|
||
|
|
||
|
use SocialNorm\Session as SocialNormSession;
|
||
|
|
||
|
class Session implements SocialNormSession
|
||
|
{
|
||
|
private $store;
|
||
|
|
||
|
public function __construct($store)
|
||
|
{
|
||
|
$this->store = $store;
|
||
|
}
|
||
|
|
||
|
public function get($key)
|
||
|
{
|
||
|
return $this->store->get($key);
|
||
|
}
|
||
|
|
||
|
public function put($key, $value)
|
||
|
{
|
||
|
return $this->store->put($key, $value);
|
||
|
}
|
||
|
}
|