From 85ef98f72d4f7ccc2cbf998262244e3a0eb5a531 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Fri, 21 Aug 2015 11:27:03 +0200 Subject: [PATCH] lib: Add PHPDoc to Request::hasCookieSupport() --- library/Icinga/Web/Request.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/Icinga/Web/Request.php b/library/Icinga/Web/Request.php index b4d7e92d4..5d11798a0 100644 --- a/library/Icinga/Web/Request.php +++ b/library/Icinga/Web/Request.php @@ -119,6 +119,11 @@ class Request extends Zend_Controller_Request_Http return $id . '-' . $this->uniqueId; } + /** + * Detect whether cookies are enabled + * + * @return bool + */ public function hasCookieSupport() { $cookie = new Cookie($this);