Devise\Pages\Collections\CollectionsRepository::findCollectionsForPageVersionId PHP Méthode

findCollectionsForPageVersionId() public méthode

When we only have the pageVersionId we can use this function as a proxy to findCollectionsForPageVersion
public findCollectionsForPageVersionId ( integer $pageVersionId ) : array
$pageVersionId integer
Résultat array
    public function findCollectionsForPageVersionId($pageVersionId)
    {
        return $this->findCollectionsForPageVersion($this->PageVersion->findOrFail($pageVersionId));
    }