Skip to content

Commit 9579445

Browse files
committed
Remove mixed type, because it doesn't support by Magento 2.4.5-p9
1 parent 16fac88 commit 9579445

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Block/Tab/Content/Sql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public function useQdbProfiler()
112112
return $this->getSqlProfiler()->getShowBacktrace();
113113
}
114114

115-
public function formatSqlTrace(mixed $bt)
115+
public function formatSqlTrace($bt)
116116
{
117117
$traceFormated = [];
118118
foreach ($bt as $i=>$traceLine) {

Block/Tab/Panel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ protected function sanitizeOutput($buffer)
227227
return $buffer;
228228
}
229229

230-
public function htmlFormatClass(mixed $class)
230+
public function htmlFormatClass($class)
231231
{
232232
return $this->helper->getIDELinkForClass($class);
233233
}

0 commit comments

Comments
 (0)