Skip to content

Commit 5a85eae

Browse files
author
Piotr Suszalski
committed
fix and call to a member function delay() on int in Laravel 9.X
1 parent a077905 commit 5a85eae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PendingCertificate.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ public function renew(): LetsEncryptCertificate
117117
$this->retryList
118118
),
119119
], $this->chain))
120-
->dispatch($email, $this->tries, $this->retryAfter, $this->retryList)
121-
->delay($this->delay);
120+
->delay($this->delay)
121+
->dispatch($email, $this->tries, $this->retryAfter, $this->retryList);
122122

123123
return $certificate;
124124
}

0 commit comments

Comments
 (0)