Skip to content

Commit bf6cdab

Browse files
authored
Merge pull request #6 from condor-bird/patch-1
Fix method signature
2 parents 5d27735 + 94b5136 commit bf6cdab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Facades/LetsEncrypt.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
/**
1010
* @mixin \Daanra\LaravelLetsEncrypt\LetsEncrypt
11-
* @method static array create(string $domain)
11+
* @method static array create(string $domain, array $chain = [])
1212
* @method static LetsEncryptCertificate createNow(string $domain)
13-
* @method static LetsEncryptCertificate renewNow($domain)
14-
* @method static PendingDispatch renew($domain)
13+
* @method static LetsEncryptCertificate renewNow(string|LetsEncryptCertificate $domain)
14+
* @method static PendingDispatch renew(string|LetsEncryptCertificate $domain, array $chain = [])
1515
*/
1616
class LetsEncrypt extends Facade
1717
{

0 commit comments

Comments
 (0)