PHPHtmlParser\Dom\Collection::offsetGet PHP Метод

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

Gets a node at the given offset, or null
public offsetGet ( mixed $offset ) : mixed
$offset mixed
Результат mixed
    public function offsetGet($offset)
    {
        return isset($this->collection[$offset]) ? $this->collection[$offset] : null;
    }