Newscoop\Service\Resource\ResourceRepository::loadProperties PHP Méthode

loadProperties() protected méthode

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