Exemplo n.º 1
0
 /**
  * Gestion en appel statique
  *
  * @return Response
  */
 public static function __callStatic($method, $arguments)
 {
     $object = Response::getInstance();
     return call_user_func_array([$object, $method], $arguments);
 }