N°8781 - Improve twig base controller render error report

This commit is contained in:
Eric Espie
2025-10-10 17:16:49 +02:00
parent 8ade0a6e85
commit 0802e5abb5
10 changed files with 247 additions and 115 deletions

View File

@@ -0,0 +1,20 @@
<?php
/*
* @copyright Copyright (C) 2010-2025 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Application\TwigBase\Controller;
interface iProfilerExtension
{
public static function GetInstance(): iProfilerExtension;
public function Init();
public function IsEnabled(): bool;
public function GetTemplatesPath(): null|string|array;
public function GetDebugTemplate(): string;
public function GetDebugParams(array $aParams): array;
public function GetLinkedScripts(): null|array;
public function GetLinkedStylesheets(): null|array;
public function GetSaas(): null|array;
}