File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## [ 5.0.2] - next
5
+
6
+ * Fix missing return types in CommandSubscriber by @GromNaN in [ #3157 ] ( https://github.com/mongodb/laravel-mongodb/pull/3157 )
7
+
4
8
## [ 5.0.1] - 2024-09-13
5
9
6
10
* Restore support for Laravel 10 by @GromNaN in [ #3148 ] ( https://github.com/mongodb/laravel-mongodb/pull/3148 )
Original file line number Diff line number Diff line change @@ -21,17 +21,17 @@ public function __construct(private Connection $connection)
21
21
{
22
22
}
23
23
24
- public function commandStarted (CommandStartedEvent $ event )
24
+ public function commandStarted (CommandStartedEvent $ event ): void
25
25
{
26
26
$ this ->commands [$ event ->getOperationId ()] = $ event ;
27
27
}
28
28
29
- public function commandFailed (CommandFailedEvent $ event )
29
+ public function commandFailed (CommandFailedEvent $ event ): void
30
30
{
31
31
$ this ->logQuery ($ event );
32
32
}
33
33
34
- public function commandSucceeded (CommandSucceededEvent $ event )
34
+ public function commandSucceeded (CommandSucceededEvent $ event ): void
35
35
{
36
36
$ this ->logQuery ($ event );
37
37
}
You can’t perform that action at this time.
0 commit comments