Skip to content

Commit c3febdf

Browse files
committed
Update a couple more attemptDelay's
1 parent d0bd049 commit c3febdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To configure Webhooks, create a `config/webhooks.php` file, which returns an arr
4242
return [
4343
'maxDepth' => 10,
4444
'maxAttempts' => 3,
45-
'attemptDelay' => 120,
45+
'retryDelay' => 120,
4646
];
4747
```
4848

src/Settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ protected function defineRules(): array
4444
{
4545
return [
4646
[['maxDepth', 'maxAttempts'], 'number', 'integerOnly' => true, 'min' => 1],
47-
[['attemptDelay'], 'number', 'integerOnly' => true, 'min' => 0],
47+
[['retryDelay'], 'number', 'integerOnly' => true, 'min' => 0],
4848
];
4949
}
5050
}

0 commit comments

Comments
 (0)