Example #1
0
 /**
  * Compile process
  *
  * @access public
  * @return void
  */
 public function compile()
 {
     //listen to current request
     $this->request->listen();
     /*
     		setup uri properties
     */
     $this->uriPath = $this->request->getUriPath();
     $this->uriParams = $this->request->getParams();
     //check path to router
     $this->checkRouter();
     //run handler class
     $this->runHandler();
 }