From 888ac98007a74dd8b45f0a61b329d0d2928812a8 Mon Sep 17 00:00:00 2001 From: Noah Hilverling Date: Tue, 18 Oct 2016 11:07:24 +0200 Subject: [PATCH] Response: Improve documentation for method getHeader refs #12161 --- library/Icinga/Web/Response.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/library/Icinga/Web/Response.php b/library/Icinga/Web/Response.php index ac2573f8d..a42f48fde 100644 --- a/library/Icinga/Web/Response.php +++ b/library/Icinga/Web/Response.php @@ -154,12 +154,12 @@ 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 + * @return null|array|string */ public function getHeader($name, $lastOnly = false) { @@ -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()); } }