Exemple #1
0
 /**
  * Obtain the current request from the environment, execute it and relay the response
  *
  */
 public static function run()
 {
     $request = Environment::getServerRequest();
     $response = self::execute($request);
     Environment::sendResponse($response);
 }