PhilippBaschke\ACFProInstaller\RemoteFilesystem::__construct PHP Method

__construct() public method

Constructor
public __construct ( string $acfFileUrl, Composer\IO\IOInterface $io, Composer\Config $config = null, array $options = [], boolean $disableTls = false )
$acfFileUrl string The url that should be used instead of fileurl
$io Composer\IO\IOInterface The IO instance
$config Composer\Config The config
$options array The options
$disableTls boolean
    public function __construct($acfFileUrl, IOInterface $io, Config $config = null, array $options = [], $disableTls = false)
    {
        $this->acfFileUrl = $acfFileUrl;
        parent::__construct($io, $config, $options, $disableTls);
    }
RemoteFilesystem