コード例 #1
0
 public function testSession(SessionEvent $event)
 {
     if ($event->getEnv() == 'test') {
         $storage = new MockFileSessionStorage($event->getCacheDir() . DS . 'sessions');
         $event->setSession($this->getSession($storage));
         $event->stopPropagation();
     }
 }
コード例 #2
0
ファイル: SessionListener.php プロジェクト: alex63530/thelia
 public function testSession(SessionEvent $event)
 {
     if ($event->getEnv() == 'test') {
         $storage = new MockFileSessionStorage($event->getContainer()->getParameter('kernel.cache_dir') . DS . 'sessions');
         $event->setSession($this->getSession($storage));
         $event->stopPropagation();
     }
 }