/**
 * Returns the value at specified offset.
 *
 * @param   mixed  $offset  The offset to retrieve.
 *
 * @return  mixed  The value at the offset.
 *
 * @see     ArrayAccess::offsetGet()
 * @since   3.1.4
 */
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
    return $this->entries[$offset];
}