PHP Class Cartalyst\Sentinel\Sessions\IlluminateSession

Inheritance: implements Cartalyst\Sentinel\Sessions\SessionInterface
Datei anzeigen Open project: cartalyst/sentinel Class Usage Examples

Protected Properties

Property Type Description
$key string The session key.
$session Illuminate\Session\Store The session store object.

Public Methods

Method Description
__construct ( Illuminate\Session\Store $session, string $key = null ) : void Create a new Illuminate Session driver.
forget ( ) {@inheritDoc}
get ( ) {@inheritDoc}
put ( $value ) {@inheritDoc}

Method Details

__construct() public method

Create a new Illuminate Session driver.
public __construct ( Illuminate\Session\Store $session, string $key = null ) : void
$session Illuminate\Session\Store
$key string
return void

forget() public method

{@inheritDoc}
public forget ( )

get() public method

{@inheritDoc}
public get ( )

put() public method

{@inheritDoc}
public put ( $value )

Property Details

$key protected_oe property

The session key.
protected string $key
return string

$session protected_oe property

The session store object.
protected Store,Illuminate\Session $session
return Illuminate\Session\Store