mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-10 19:56:52 +02:00
[ticket/14557] Don't return $value
PHPBB3-14557
This commit is contained in:
@ -70,10 +70,9 @@ class data extends Event implements \ArrayAccess
|
|||||||
* @param string $offset Data array offset
|
* @param string $offset Data array offset
|
||||||
* @param string $key Offset key
|
* @param string $key Offset key
|
||||||
* @param mixed $value Value to update
|
* @param mixed $value Value to update
|
||||||
* @return mixed Value of $value
|
|
||||||
*/
|
*/
|
||||||
public function update_subarray($offset, $key, $value)
|
public function update_subarray($offset, $key, $value)
|
||||||
{
|
{
|
||||||
return $this->data[$offset][$key] = $value;
|
$this->data[$offset][$key] = $value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user