Newscoop\Service\Resource\ResourceRepository::getRepositoryProperties PHP Method

getRepositoryProperties() public method

Provides the properties of the repository.
public getRepositoryProperties ( ) : array
return array The array containing the properties.
    public function getRepositoryProperties()
    {
        if ($this->repositoryProperties === NULL) {
            $this->repositoryProperties = $this->getResourceFor(new ResourceId(__CLASS__, ResourceId::TYPE_PROPERTIES));
        }
        return $this->repositoryProperties;
    }