Gumdrop\PageCollection::offsetGet PHP Метод

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

public offsetGet ( $offset )
    public function offsetGet($offset)
    {
        if (!$this->offsetExists($offset)) {
            return null;
        }
        return $this->Pages[$offset];
    }