Skip to content

Commit e9431f6

Browse files
Updating the docs to reflect the actual generated comment (#10390)
1 parent 6b58563 commit e9431f6

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

contracts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ use Illuminate\Contracts\Redis\Factory;
5050
class CacheOrderInformation
5151
{
5252
/**
53-
* Create a new event handler instance.
53+
* Create the event listener.
5454
*/
5555
public function __construct(
5656
protected Factory $redis,

events.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ use App\Events\PodcastProcessed;
6161
class SendPodcastNotification
6262
{
6363
/**
64-
* Handle the given event.
64+
* Handle the event.
6565
*/
6666
public function handle(PodcastProcessed $event): void
6767
{
@@ -74,7 +74,7 @@ You may listen to multiple events using PHP's union types:
7474

7575
```php
7676
/**
77-
* Handle the given event.
77+
* Handle the event.
7878
*/
7979
public function handle(PodcastProcessed|PodcastPublished $event): void
8080
{

http-client.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ use Illuminate\Http\Client\Events\RequestSending;
830830
class LogRequest
831831
{
832832
/**
833-
* Handle the given event.
833+
* Handle the event.
834834
*/
835835
public function handle(RequestSending $event): void
836836
{

mail.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,7 @@ use Illuminate\Mail\Events\MessageSending;
14151415
class LogMessage
14161416
{
14171417
/**
1418-
* Handle the given event.
1418+
* Handle the event.
14191419
*/
14201420
public function handle(MessageSending $event): void
14211421
{

notifications.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1670,7 +1670,7 @@ use Illuminate\Notifications\Events\NotificationSending;
16701670
class CheckNotificationStatus
16711671
{
16721672
/**
1673-
* Handle the given event.
1673+
* Handle the event.
16741674
*/
16751675
public function handle(NotificationSending $event): void
16761676
{
@@ -1683,7 +1683,7 @@ The notification will not be sent if an event listener for the `NotificationSend
16831683

16841684
```php
16851685
/**
1686-
* Handle the given event.
1686+
* Handle the event.
16871687
*/
16881688
public function handle(NotificationSending $event): bool
16891689
{
@@ -1695,7 +1695,7 @@ Within an event listener, you may access the `notifiable`, `notification`, and `
16951695

16961696
```php
16971697
/**
1698-
* Handle the given event.
1698+
* Handle the event.
16991699
*/
17001700
public function handle(NotificationSending $event): void
17011701
{
@@ -1716,7 +1716,7 @@ use Illuminate\Notifications\Events\NotificationSent;
17161716
class LogNotification
17171717
{
17181718
/**
1719-
* Handle the given event.
1719+
* Handle the event.
17201720
*/
17211721
public function handle(NotificationSent $event): void
17221722
{
@@ -1729,7 +1729,7 @@ Within an event listener, you may access the `notifiable`, `notification`, `chan
17291729

17301730
```php
17311731
/**
1732-
* Handle the given event.
1732+
* Handle the event.
17331733
*/
17341734
public function handle(NotificationSent $event): void
17351735
{

0 commit comments

Comments
 (0)