start() public method

Starts the session storage.
public start ( )
Example #1
0
 /**
  * Returns the ID of the user session
  *
  * Automatically starts the session if necessary.
  *
  * @return string  The session ID
  */
 protected function getSessionId()
 {
     $this->session->start();
     return $this->session->getId();
 }