From 94b51361fa1725bbd0604b8c204a5b95f6b6f51a Mon Sep 17 00:00:00 2001 From: condor Date: Fri, 17 Sep 2021 17:22:36 +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..49f563d 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|LetsEncryptCertificate $domain) + * @method static PendingDispatch renew(string|LetsEncryptCertificate $domain, array $chain = []) */ class LetsEncrypt extends Facade {