Skip to content

Commit

Permalink
fix and call to a member function delay() on int in Laravel 9.X
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Suszalski committed Dec 29, 2022
1 parent a077905 commit 5a85eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PendingCertificate.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ public function renew(): LetsEncryptCertificate
$this->retryList
),
], $this->chain))
->dispatch($email, $this->tries, $this->retryAfter, $this->retryList)
->delay($this->delay);
->delay($this->delay)
->dispatch($email, $this->tries, $this->retryAfter, $this->retryList);

return $certificate;
}
Expand Down

0 comments on commit 5a85eae

Please sign in to comment.