public __unset (mixed $property) Magic unset to remove items using the array syntax unset($user['name']);
public __isset (mixed $property) Magic isset to check whether a property is defined in the bag var_dump(isset($user['name']));
final public offsetUnset (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 offsetSet (mixed $property, mixed $value) ...
final public offsetGet (mixed $property) ...
final public getIterator () Returns the bag iterator
final public offsetExists (mixed $property) ...
public get (mixed $property, [mixed $defaultValue]) Obtains a value from the session bag optionally setting a default value echo $user->get('name', 'Kimbra');
Page 30 of 382