mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-22 18:18:46 +02:00
N°8781 - Improve twig base controller render error report
This commit is contained in:
committed by
Benjamin Dalsass
parent
c83d998924
commit
5df73f5820
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SARL
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
namespace Combodo\iTop\Application\TwigBase\Controller;
|
||||
|
||||
|
||||
abstract class AbstractProfilerExtension implements iProfilerExtension
|
||||
{
|
||||
public function Init()
|
||||
{
|
||||
}
|
||||
|
||||
public abstract function GetTemplatesPath(): null|string|array;
|
||||
|
||||
public abstract function IsEnabled(): bool;
|
||||
|
||||
public abstract function GetDebugTemplate(): string;
|
||||
|
||||
public abstract function GetDebugParams(array $aParams): array;
|
||||
|
||||
public function GetLinkedScripts(): ?array
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public function GetLinkedStylesheets(): ?array
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public function GetSaas(): null|array
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user