/**
  * Sets the response status code.
  *
  * @param int   $code HTTP status code
  * @param mixed $text HTTP status text
  *
  * If the status text is null it will be automatically populated for the known
  * status codes and left empty otherwise.
  *
  * @return Response
  *
  * @throws \InvalidArgumentException When the HTTP status code is not valid
  *
  * @api
  */
 public function setStatusCode($code, $text = null)
 {
     return parent::setStatusCode($code, $text);
 }