We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2152712 commit f9918e4Copy full SHA for f9918e4
.github/workflows/Tests.yaml
@@ -15,6 +15,8 @@ jobs:
15
fail-fast: false
16
matrix:
17
php:
18
+ - 8.4
19
+ - 8.3
20
- 8.2
21
- 8.1
22
- 8.0
src/retry.php
@@ -17,7 +17,7 @@
* @throws FailingTooHardException The maximum number of attempts was reached.
* @throws \UnexpectedValueException The operation returned an unsupported type.
*/
-function retry(int $tries, callable $operation, callable $onError = null): mixed
+function retry(int $tries, callable $operation, ?callable $onError = null): mixed
{
// Nothing to do if tries less than or equal to zero.
23
if ($tries <= $attempts = 0) {
0 commit comments