lib: Add PHPDoc to Request::hasCookieSupport()

This commit is contained in:
Eric Lippmann 2015-08-21 11:27:03 +02:00
parent 90ef288362
commit 85ef98f72d

View File

@ -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);