DirectAdmin\LetsEncrypt\Lib\Account::__construct PHP Method

__construct() public method

Initialize Account
public __construct ( string $username, string | null $email = null, string | null $acmeServer = null )
$username string
$email string | null
$acmeServer string | null
    function __construct($username, $email = null, $acmeServer = null)
    {
        $this->username = $username;
        $this->email = $email;
        $this->acmeServer = $acmeServer;
    }