Response: Improve documentation for method getHeader

refs #12161
This commit is contained in:
Noah Hilverling 2016-10-18 11:07:24 +02:00
parent e5c736aab4
commit 888ac98007
1 changed files with 5 additions and 5 deletions

View File

@ -154,10 +154,10 @@ class Response extends Zend_Controller_Response_Http
}
/**
* Get an array of every header value with a specified name
* Get an array of all header values for the given name
*
* @param string $name
* @param bool $lastOnly If this is true, the last value will be returned as a string.
* @param string $name The name of the header
* @param bool $lastOnly If this is true, the last value will be returned as a string
*
* @return null|array|string
*/
@ -300,7 +300,7 @@ class Response extends Zend_Controller_Response_Http
}
}
if (!$this->getHeader('Content-Type', true)) {
if (! $this->getHeader('Content-Type', true)) {
$this->setHeader('Content-Type', $this->getContentType());
}
}