Skip to content

Commit b49a941

Browse files
authored
Merge pull request #27 from ankalagon/master
fix and call to a member function delay() on int in Laravel 9.X
2 parents a077905 + 5a85eae commit b49a941

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PendingCertificate.php

+2-2
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)