Пример #1
0
 /**
  * Get a session object.
  *
  * @return  Session
  *
  * @since   1.0
  */
 public function getSession()
 {
     if (is_null($this->newSession)) {
         $this->newSession = new Session();
         $this->newSession->start();
         // @todo Decouple from Factory
         Factory::$session = $this->newSession;
     }
     return $this->newSession;
 }