コード例 #1
0
ファイル: App.php プロジェクト: alejoasotelo/framework-app
 /**
  * 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;
 }