/**
  * Set the content for this Response.
  *
  * @see        AgaviResponse::setContent()
  *
  * @param      array The content to be sent in this Response.
  *
  * @return     bool Whether or not the operation was successful.
  *
  * @author     David Zülke <*****@*****.**>
  * @since      0.11.0
  */
 public function setContent($content)
 {
     return parent::setContent((array) $content);
 }