Coduo\TuTu\Config\Loader\YamlLoader::__construct PHP Method

__construct() public method

public __construct ( $responsesYamlPath )
$responsesYamlPath
    public function __construct($responsesYamlPath)
    {
        if (!file_exists($responsesYamlPath)) {
            throw new \InvalidArgumentException(sprintf("File \"%s\" does not exist.", $responsesYamlPath));
        }
        $this->responsesYamlPath = $responsesYamlPath;
        $this->responsesYamlDir = dirname($this->responsesYamlPath);
    }