/**
  * Let Symfony starts the session
  *
  * @return bool
  */
 public function sessionStart()
 {
     if ($this->storage && !$this->storage->isStarted()) {
         $this->storage->start();
     }
     return true;
 }
 public function start()
 {
     return $this->innerSessionStorage->start();
 }
Ejemplo n.º 3
0
 /**
  * {@inheritdoc}
  */
 public function start()
 {
     return $this->storage->start();
 }
 /**
  * @inheritdoc
  */
 public function start()
 {
     $this->replaceSessionId();
     return $this->decorated->start();
 }