Beispiel #1
0
 /**
  * Starts the session after the initialization of the framework
  * core and is one of the first events which will be executed.
  * 
  * @access public
  * @param \Zepi\Turbo\Framework $framework
  * @param \Zepi\Turbo\Request\WebRequest $request
  * @param \Zepi\Turbo\Response\Response $response
  */
 public function execute(Framework $framework, WebRequest $request, Response $response)
 {
     if (!$request instanceof \Zepi\Turbo\Request\WebRequest) {
         return;
     }
     // Reinitialize the session
     $this->sessionManager->reinitializeSession($framework, $request, $response);
 }