File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4+ ## [ 5.0.2] - 2024-09-17
5+
6+ * Fix missing return types in CommandSubscriber by @GromNaN in [ #3158 ] ( https://github.com/mongodb/laravel-mongodb/pull/3158 )
7+
48## [ 5.0.1] - 2024-09-13
59
610* 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)
2121 {
2222 }
2323
24- public function commandStarted (CommandStartedEvent $ event )
24+ public function commandStarted (CommandStartedEvent $ event ): void
2525 {
2626 $ this ->commands [$ event ->getOperationId ()] = $ event ;
2727 }
2828
29- public function commandFailed (CommandFailedEvent $ event )
29+ public function commandFailed (CommandFailedEvent $ event ): void
3030 {
3131 $ this ->logQuery ($ event );
3232 }
3333
34- public function commandSucceeded (CommandSucceededEvent $ event )
34+ public function commandSucceeded (CommandSucceededEvent $ event ): void
3535 {
3636 $ this ->logQuery ($ event );
3737 }
You can’t perform that action at this time.
0 commit comments