Ikwattro\GuzzleStereo\Recorder::loadConfig PHP Method

loadConfig() public method

public loadConfig ( string $configurationFile )
$configurationFile string
    public function loadConfig($configurationFile)
    {
        try {
            $this->config = Yaml::parse(file_get_contents($configurationFile));
        } catch (ParseException $e) {
            throw new RecorderException($e->getMessage(), $e->getCode(), $e->getPrevious());
        }
        $this->processConfig();
    }