aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Diagnostics/QueryLogger.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Diagnostics/QueryLogger.php')
-rw-r--r--lib/private/Diagnostics/QueryLogger.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/private/Diagnostics/QueryLogger.php b/lib/private/Diagnostics/QueryLogger.php
index 5efe99d1a74..c5d5906d92d 100644
--- a/lib/private/Diagnostics/QueryLogger.php
+++ b/lib/private/Diagnostics/QueryLogger.php
@@ -29,9 +29,6 @@ class QueryLogger implements IQueryLogger {
*/
private $activated = false;
- /**
- * @inheritdoc
- */
public function startQuery($sql, ?array $params = null, ?array $types = null) {
if ($this->activated) {
$this->activeQuery = new Query($sql, $params, microtime(true), $this->getStack());
@@ -46,9 +43,6 @@ class QueryLogger implements IQueryLogger {
return $stack;
}
- /**
- * @inheritdoc
- */
public function stopQuery() {
if ($this->activated && $this->activeQuery) {
$this->activeQuery->end(microtime(true));
@@ -58,16 +52,10 @@ class QueryLogger implements IQueryLogger {
}
}
- /**
- * @inheritdoc
- */
public function getQueries() {
return $this->queries->getData();
}
- /**
- * @inheritdoc
- */
public function activate() {
$this->activated = true;
}