public set (mixed $property, mixed $value) Sets a value in the session bag $user->set('name', 'Kimbra');
public remove (mixed $property) Removes a property from the internal bag $user->remove('name');
final public offsetUnset (mixed $property) ...
final public offsetSet (mixed $property, mixed $value) ...
final public offsetGet (mixed $property) ...
final public offsetExists (mixed $property) ...
public initialize () Initializes the session bag. This method must not be called directly, the class calls it when its internal data is accessed
public has (mixed $property) Check whether a property is defined in the internal bag var_dump($user->has('name'));
final public getIterator () Returns the bag iterator
public getDI () Returns the DependencyInjector container
Page 30 of 382