Passed
Push — master ( 228911...a2422c )
by Christoph
13:41 queued 12s
created
lib/private/DB/BacktraceDebugStack.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
 use Doctrine\DBAL\Logging\DebugStack;
27 27
 
28 28
 class BacktraceDebugStack extends DebugStack {
29
-	public function startQuery($sql, ?array $params = null, ?array $types = null) {
30
-		parent::startQuery($sql, $params, $types);
31
-		$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
32
-		$this->queries[$this->currentQuery]['backtrace'] = $backtrace;
33
-		$this->queries[$this->currentQuery]['start'] = $this->start;
34
-	}
29
+    public function startQuery($sql, ?array $params = null, ?array $types = null) {
30
+        parent::startQuery($sql, $params, $types);
31
+        $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
32
+        $this->queries[$this->currentQuery]['backtrace'] = $backtrace;
33
+        $this->queries[$this->currentQuery]['start'] = $this->start;
34
+    }
35 35
 }
Please login to merge, or discard this patch.