Devise\Pages\Collections\CollectionsRepository::findCollectionsForPageVersionId PHP Method

findCollectionsForPageVersionId() public method

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