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

loadProperties() protected method

Load the property file at the specified path.
protected loadProperties ( $path ) : array
return array The array containing the loaded properties.
    protected function loadProperties($path)
    {
        Validation::notEmpty($path, 'path');
        return parse_ini_file($this->processConfigurationsPath($path));
    }