queryLogger, $sql, ); } public function query(string $sql): Result { $this->queryLogger->startQuery($sql); $result = parent::query($sql); $this->queryLogger->stopQuery(); return $result; } public function exec(string $sql): int|string { $this->queryLogger->startQuery($sql); $result = parent::exec($sql); $this->queryLogger->stopQuery(); return $result; } }