phpBB

Code Changes

File: phpbb/event/data.php

  Unmodified   Added   Modified   Removed
Line 44Line 44
		return array_intersect_key($this->data, array_flip($keys));
}


		return array_intersect_key($this->data, array_flip($keys));
}


 
	#[\ReturnTypeWillChange]

	public function offsetExists($offset)
{
return isset($this->data[$offset]);
}


	public function offsetExists($offset)
{
return isset($this->data[$offset]);
}


 
	#[\ReturnTypeWillChange]

	public function offsetGet($offset)
{
return isset($this->data[$offset]) ? $this->data[$offset] : null;
}


	public function offsetGet($offset)
{
return isset($this->data[$offset]) ? $this->data[$offset] : null;
}


 
	#[\ReturnTypeWillChange]

	public function offsetSet($offset, $value)
{
$this->data[$offset] = $value;
}


	public function offsetSet($offset, $value)
{
$this->data[$offset] = $value;
}


 
	#[\ReturnTypeWillChange]

	public function offsetUnset($offset)
{
unset($this->data[$offset]);

	public function offsetUnset($offset)
{
unset($this->data[$offset]);