* $user = new \Phalcon\Session\Bag('user'); * $user->name = "Kimbra Johnson"; * $user->age = 22; * */ class Bag implements \Phalcon\DI\InjectionAwareInterface, \Phalcon\Session\BagInterface { protected $_dependencyInjector; protected $_name; protected $_data; protected $_initialized; protected $_session; /** * \Phalcon\Session\Bag constructor * * @param string $name */ public function __construct($name){ } /** * Sets the DependencyInjector container * * @param \Phalcon\DiInterface $dependencyInjector */ public function setDI($dependencyInjector){ } /** * Returns the DependencyInjector container * * @return \Phalcon\DiInterface */ public function getDI(){ } /** * Initializes the session bag. This method must not be called directly, the class calls it when its internal data is accesed */ public function initialize(){ } /** * Destroyes the session bag * * * $user->destroy(); * */ public function destroy(){ } /** * Sets a value in the session bag * * * $user->set('name', 'Kimbra'); * * * @param string $property * @param string $value */ public function set($property, $value){ } /** * Magic setter to assign values to the session bag. * Alias for \Phalcon\Session\Bag::set() * * * $user->name = "Kimbra"; * * * @param string $property * @param string $value */ public function __set($property, $value){ } /** * Obtains a value from the session bag optionally setting a default value * * * echo $user->get('name', 'Kimbra'); * * * @param string $property * @param string $defaultValue * @return mixed */ public function get($property, $defaultValue=null){ } /** * Magic getter to obtain values from the session bag. * Alias for \Phalcon\Session\Bag::get() * * * echo $user->name; * * * @param string $property * @return string */ public function __get($property){ } /** * Check whether a property is defined in the internal bag * * * var_dump($user->has('name')); * * * @param string $property * @return boolean */ public function has($property){ } /** * Magic isset to check whether a property is defined in the bag. * Alias for \Phalcon\Session\Bag::has() * * * var_dump(isset($user['name'])); * * * @param string $property * @return boolean */ public function __isset($property){ } /** * Removes a property from the internal bag * * * $user->remove('name'); * * * @param string $property * @return boolean */ public function remove($property){ } /** * Magic unset to remove items using the property syntax. * Alias for \Phalcon\Session\Bag::remove() * * * unset($user['name']); * * * @param string $property * @return boolean */ public function __unset($property){ } } }