Browscap\Generator\AbstractBuildGenerator::__construct PHP Method

__construct() public method

public __construct ( string $resourceFolder, string $buildFolder )
$resourceFolder string
$buildFolder string
    public function __construct($resourceFolder, $buildFolder)
    {
        $this->resourceFolder = $this->checkDirectoryExists($resourceFolder, 'resource');
        $this->buildFolder = $this->checkDirectoryExists($buildFolder, 'build');
    }