Puli\Repository\Resource\Collection\LazyResourceCollection::getPaths PHP Метод

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

public getPaths ( )
    public function getPaths()
    {
        if (!$this->loaded) {
            $this->load();
        }
        return array_map(function (PuliResource $resource) {
            return $resource->getPath();
        }, $this->resources);
    }