Skip to content

Commit 2d8f13a

Browse files
authored
Revert "Consistent usage of "$" prefix for property names (#10645)" (#10661)
This reverts commit 4a9b178.
1 parent 462c210 commit 2d8f13a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ If both `retryUntil` and `tries` are defined, Laravel gives precedence to the `r
598598
<a name="specifying-queued-listener-backoff"></a>
599599
#### Specifying Queued Listener Backoff
600600

601-
If you would like to configure how many seconds Laravel should wait before retrying a listener that has encountered an exception, you may do so by defining a `$backoff` property on your listener class:
601+
If you would like to configure how many seconds Laravel should wait before retrying a listener that has encountered an exception, you may do so by defining a `backoff` property on your listener class:
602602

603603
```php
604604
/**
@@ -638,7 +638,7 @@ public function backoff(OrderShipped $event): array
638638
<a name="specifying-queued-listener-max-exceptions"></a>
639639
#### Specifying Queued Listener Max Exceptions
640640

641-
Sometimes you may wish to specify that a queued listener may be attempted many times, but should fail if the retries are triggered by a given number of unhandled exceptions (as opposed to being released by the `release` method directly). To accomplish this, you may define a `$maxExceptions` property on your listener class:
641+
Sometimes you may wish to specify that a queued listener may be attempted many times, but should fail if the retries are triggered by a given number of unhandled exceptions (as opposed to being released by the `release` method directly). To accomplish this, you may define a `maxExceptions` property on your listener class:
642642

643643
```php
644644
<?php

0 commit comments

Comments
 (0)