Ejemplo n.º 1
0
 public function setUp()
 {
     parent::setUp();
     $this->cookie = new Cookie(array('secure' => false, 'sign' => false, 'secret' => 'C7s9r7yYYyVCDZZstzyl', 'httpOnly' => true));
 }
Ejemplo n.º 2
0
 public function tearDown()
 {
     parent::tearDown();
     $this->destroyApp();
 }
Ejemplo n.º 3
0
 public function setUp()
 {
     parent::setUp();
     $settings = ['session.name' => 'edge', 'session.timeout' => 20 * 60, 'session.httponly' => true];
     $this->session = new Session($this->getSessionEngine(), $settings);
 }