Example #1
0
 /**
  * Execute filter
  *
  * @param Application $app
  *
  * @return bool
  */
 public function execute(Application $app)
 {
     $app->initAppEnv();
     $this->parseCommon($app);
     $this->parseInternalVar($app);
     $this->parseParams($app);
     $this->transEncoding($app);
     $requestfile = Conf::get('wisphp.log.request');
     if ($requestfile) {
         $this->logRequest($app, $requestfile);
     }
     return true;
 }