We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce97048 commit 265dadbCopy full SHA for 265dadb
src/CommandSubscriber.php
@@ -21,17 +21,17 @@ public function __construct(private Connection $connection)
21
{
22
}
23
24
- public function commandStarted(CommandStartedEvent $event)
+ public function commandStarted(CommandStartedEvent $event): void
25
26
$this->commands[$event->getOperationId()] = $event;
27
28
29
- public function commandFailed(CommandFailedEvent $event)
+ public function commandFailed(CommandFailedEvent $event): void
30
31
$this->logQuery($event);
32
33
34
- public function commandSucceeded(CommandSucceededEvent $event)
+ public function commandSucceeded(CommandSucceededEvent $event): void
35
36
37
0 commit comments