Blackfire\Player\Result::offsetGet PHP Метод

offsetGet() публичный Метод

public offsetGet ( $offset )
    public function offsetGet($offset)
    {
        if (!array_key_exists($offset, $this->values)) {
            throw new InvalidArgumentException(sprintf('The "%s" variable does not exist.', $offset));
        }
        return $this->values[$offset];
    }