public function getBag( $name )
 {
     return $this->innerSessionStorage->getBag( $name );
 }
Exemple #2
0
 /**
  * Returns the number of attributes.
  *
  * @return int The number of attributes
  */
 public function count()
 {
     return count($this->storage->getBag('attributes')->all());
 }
Exemple #3
0
 /**
  * {@iheritdoc}
  */
 public function getBag($name)
 {
     return $this->storage->getBag($name);
 }
 /**
  * @inheritdoc
  */
 public function getBag($name)
 {
     $this->replaceSessionId();
     return $this->decorated->getBag($name);
 }