Newscoop\Service\Resource\ResourceRepository::loadProperties PHP Метод

loadProperties() защищенный Метод

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