N°8772 - add &debug in request

This commit is contained in:
Eric Espie
2025-12-05 11:51:35 +01:00
parent b315b97e9e
commit be54bd5602
5 changed files with 23 additions and 11 deletions

View File

@@ -9,6 +9,8 @@ namespace Combodo\iTop\Application\TwigBase\Controller;
abstract class AbstractProfilerExtension implements iProfilerExtension
{
protected bool $bDebugForced;
public function Init()
{
}
@@ -35,4 +37,9 @@ abstract class AbstractProfilerExtension implements iProfilerExtension
{
return null;
}
public function SetDebugForced(bool $bDebugForced): void
{
$this->bDebugForced = $bDebugForced;
}
}