示例#1
0
 /**
  * Gestion en appel statique
  *
  * @return Request
  */
 public static function __callStatic($method, $arguments)
 {
     $object = Request::getInstance();
     return call_user_func_array([$object, $method], $arguments);
 }