From 8cf7b0644579fc5c4ec6c2f309dde7fe8eac4b41 Mon Sep 17 00:00:00 2001 From: condor Date: Fri, 17 Sep 2021 16:20:32 +0600 Subject: [PATCH] Update LetsEncrypt.php change method signature --- src/Facades/LetsEncrypt.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Facades/LetsEncrypt.php b/src/Facades/LetsEncrypt.php index e21905b..c1f3b0e 100644 --- a/src/Facades/LetsEncrypt.php +++ b/src/Facades/LetsEncrypt.php @@ -8,10 +8,10 @@ /** * @mixin \Daanra\LaravelLetsEncrypt\LetsEncrypt - * @method static array create(string $domain) + * @method static array create(string $domain, array $chain = []) * @method static LetsEncryptCertificate createNow(string $domain) - * @method static LetsEncryptCertificate renewNow($domain) - * @method static PendingDispatch renew($domain) + * @method static LetsEncryptCertificate renewNow(string $domain) + * @method static PendingDispatch renew(string $domain, array $chain = []) */ class LetsEncrypt extends Facade {