Magestead\Helper\Config::readConfigFile PHP 메소드

readConfigFile() 보호된 메소드

protected readConfigFile ( ) : string
리턴 string
    protected function readConfigFile()
    {
        if (!file_exists($this->_projectPath . '/magestead.yaml')) {
            throw new MissingConfigFileException('No config file was found, are you in the project root?');
        }
        return file_get_contents($this->_projectPath . '/magestead.yaml');
    }