From 0ab8c54137af8463afbec405acbc1c686c753d01 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 30 Jul 2025 09:28:25 -0600 Subject: [PATCH] Revert "Consistent usage of "$" prefix for property names (#10645)" This reverts commit 4a9b178d5ea888b05a487b394d1c322429a74fac. --- events.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events.md b/events.md index 13c00b53eb..9671f427bc 100644 --- a/events.md +++ b/events.md @@ -598,7 +598,7 @@ If both `retryUntil` and `tries` are defined, Laravel gives precedence to the `r #### Specifying Queued Listener Backoff -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: +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: ```php /** @@ -638,7 +638,7 @@ public function backoff(OrderShipped $event): array #### Specifying Queued Listener Max Exceptions -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: +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: ```php