Skip to content

Commit d1c7b0c

Browse files
committed
Allow for func_get_args in query
1 parent 8db5f78 commit d1c7b0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Decorator/JaegerConnectionDecorator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function query()
121121
->addTag(new DbalAutoCommitTag($this->isAutoCommit()))
122122
->addTag(new DbalNestingLevelTag($this->getTransactionNestingLevel()));
123123
try {
124-
return parent::query();
124+
return parent::query(...func_get_args());
125125
} catch (\Exception $e) {
126126
$span->addTag(new DbalErrorCodeTag($e->getCode()))
127127
->addTag(new ErrorTag());

0 commit comments

Comments
 (0)