コード例 #1
0
ファイル: Session.php プロジェクト: mvc-lite/mvc-lite
 /**
  * Getter for the session instance variable.
  *
  * @return MvcLite\Session The session instance.
  */
 public function getSession()
 {
     if (!$this->session) {
         $this->session = \MvcLite\Session::getInstance();
     }
     return $this->session;
 }
コード例 #2
0
ファイル: SessionTest.php プロジェクト: mvc-lite/mvc-lite
 /**
  * The setup method, called before each test
  */
 public function setUp()
 {
     $this->sut = Session::getInstance();
 }