Skip to content

Commit 3b0d261

Browse files
committed
Change requerement
1 parent 35578cb commit 3b0d261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Doctrine/DBAL/Logging/SQLLogger.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function __construct(
5151
$this->span = null;
5252
}
5353

54-
public function startQuery($sql, ?array $params = null, ?array $types = null)
54+
public function startQuery($sql, ?array $params = null, ?array $types = null): void
5555
{
5656
if (false === $this->elasticApmTracer->active()) {
5757
return;
@@ -104,7 +104,7 @@ private function getContext($sql, ?array $params, ?array $types): Context
104104
);
105105
}
106106

107-
public function stopQuery()
107+
public function stopQuery(): void
108108
{
109109
if (null === $this->span) {
110110
return;

0 commit comments

Comments
 (0)