PHP Class Cartalyst\Sentinel\Sessions\FuelPHPSession

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

Protected Properties

Property Type Description
$key string The session key.
$store Fuel\Core\Session_Driver The FuelPHP session driver.

Public Methods

Method Description
__construct ( Fuel\Core\Session_Driver $store, string $key = null ) : void Create a new FuelPHP Session driver.
forget ( ) {@inheritDoc}
get ( ) {@inheritDoc}
put ( $value ) {@inheritDoc}

Method Details

__construct() public method

Create a new FuelPHP Session driver.
public __construct ( Fuel\Core\Session_Driver $store, string $key = null ) : void
$store Fuel\Core\Session_Driver
$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

$store protected_oe property

The FuelPHP session driver.
protected Session_Driver,Fuel\Core $store
return Fuel\Core\Session_Driver