DirectAdmin\LetsEncrypt\Lib\Config::__construct PHP Méthode

__construct() public méthode

Initialize config class
public __construct ( null $path = null )
$path null
    function __construct($path = null)
    {
        if ($path == null) {
            $this->path = '/usr/local/directadmin/plugins/da-letsencrypt/config.conf';
        } else {
            $this->path = $path;
        }
    }