From cebf9f6a5a2d75ea682f109486ada3d5558fb6a2 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 16 Feb 2015 22:12:47 +0100 Subject: Incorporate review changes --- lib/private/appframework/http/request.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/private/appframework') diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php index 5cffbccb623..d85bfd4f30a 100644 --- a/lib/private/appframework/http/request.php +++ b/lib/private/appframework/http/request.php @@ -128,9 +128,9 @@ class Request implements \ArrayAccess, \Countable, IRequest { } /** - * @param $parameters + * @param array $parameters */ - public function setUrlParameters($parameters) { + public function setUrlParameters(array $parameters) { $this->items['urlParams'] = $parameters; $this->items['parameters'] = array_merge( $this->items['parameters'], @@ -195,8 +195,8 @@ class Request implements \ArrayAccess, \Countable, IRequest { /** * Magic property accessors - * @param $name - * @param $value + * @param string $name + * @param mixed $value */ public function __set($name, $value) { throw new \RuntimeException('You cannot change the contents of the request object'); @@ -253,7 +253,7 @@ class Request implements \ArrayAccess, \Countable, IRequest { } /** - * @param $name + * @param string $name * @return bool */ public function __isset($name) { @@ -261,7 +261,7 @@ class Request implements \ArrayAccess, \Countable, IRequest { } /** - * @param $id + * @param string $id */ public function __unset($id) { throw new \RunTimeException('You cannot change the contents of the request object'); -- cgit v1.2.3