aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2016-12-27 22:28:34 +0100
committerJakub Senko <jakubsenko@gmail.com>2016-12-27 22:28:34 +0100
commit1eb451d0d49af102ef80e5617765f01c07eebeea (patch)
tree7aa6b3deb147a42a89f923d1de2426526d3710ae
parent60251cd62367aa8b50e7f717479eea5170b03e98 (diff)
downloadforums-1eb451d0d49af102ef80e5617765f01c07eebeea.tar
forums-1eb451d0d49af102ef80e5617765f01c07eebeea.tar.gz
forums-1eb451d0d49af102ef80e5617765f01c07eebeea.tar.bz2
forums-1eb451d0d49af102ef80e5617765f01c07eebeea.tar.xz
forums-1eb451d0d49af102ef80e5617765f01c07eebeea.zip
[ticket/14557] Don't return $value
PHPBB3-14557
-rw-r--r--phpBB/phpbb/event/data.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/phpbb/event/data.php b/phpBB/phpbb/event/data.php
index 42080e96d5..00ebbcefdd 100644
--- a/phpBB/phpbb/event/data.php
+++ b/phpBB/phpbb/event/data.php
@@ -70,10 +70,9 @@ class data extends Event implements \ArrayAccess
* @param string $offset Data array offset
* @param string $key Offset key
* @param mixed $value Value to update
- * @return mixed Value of $value
*/
public function update_subarray($offset, $key, $value)
{
- return $this->data[$offset][$key] = $value;
+ $this->data[$offset][$key] = $value;
}
}