File tree 3 files changed +7
-14
lines changed
3 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,14 @@ jobs:
13
13
fail-fast : true
14
14
matrix :
15
15
os : [ubuntu-latest, windows-latest]
16
- php : [8.1]
17
- laravel : [9.*]
16
+ php : [8.1, 8.2 ]
17
+ laravel : [9.*, 10.* ]
18
18
stability : [prefer-lowest, prefer-stable]
19
19
include :
20
20
- laravel : 9.*
21
21
testbench : 7.*
22
+ - laravel : 10.*
23
+ testbench : 8.*
22
24
23
25
name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
24
26
Original file line number Diff line number Diff line change 16
16
}
17
17
],
18
18
"require" : {
19
- "php" : " ^8.1" ,
20
- "illuminate/contracts" : " ^9.0"
19
+ "php" : " ^8.1 | ^8.2 " ,
20
+ "illuminate/contracts" : " ^9.0 | ^10.0 "
21
21
},
22
22
"require-dev" : {
23
23
"laravel/pint" : " ^1.0" ,
24
- "orchestra/testbench" : " ^7.0" ,
24
+ "orchestra/testbench" : " ^7.0 | ^8.0 " ,
25
25
"phpunit/phpunit" : " ^9.5"
26
26
},
27
27
"autoload" : {
Original file line number Diff line number Diff line change @@ -12,9 +12,6 @@ class NotificationEventSubscriber
12
12
{
13
13
/**
14
14
* Executes `onSent()` method in the notication.
15
- *
16
- * @param \Illuminate\Notifications\Events\NotificationSent $event
17
- * @return void
18
15
*/
19
16
public function handleNotificationSent (NotificationSent $ event ): void
20
17
{
@@ -25,9 +22,6 @@ public function handleNotificationSent(NotificationSent $event): void
25
22
26
23
/**
27
24
* Executes `onSending()` method in the notification.
28
- *
29
- * @param \Illuminate\Notifications\Events\NotificationSending $event
30
- * @return void
31
25
*/
32
26
public function handleNotificationSending (NotificationSending $ event ): void
33
27
{
@@ -38,9 +32,6 @@ public function handleNotificationSending(NotificationSending $event): void
38
32
39
33
/**
40
34
* The subscriber classes to register.
41
- *
42
- * @param \Illuminate\Events\Dispatcher $events
43
- * @return array
44
35
*/
45
36
public function subscribe (Dispatcher $ events ): array
46
37
{
You can’t perform that action at this time.
0 commit comments