mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 11:38:44 +02:00
N°8796 - Add PHP code style validation in iTop and extensions - format whole code base
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* @copyright Copyright (C) 2010-2025 Combodo SARL
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
@@ -6,20 +7,19 @@
|
||||
|
||||
namespace Combodo\iTop\Application\TwigBase\Controller;
|
||||
|
||||
|
||||
abstract class AbstractProfilerExtension implements iProfilerExtension
|
||||
{
|
||||
public function Init()
|
||||
{
|
||||
}
|
||||
|
||||
public abstract function GetTemplatesPath(): null|string|array;
|
||||
abstract public function GetTemplatesPath(): null|string|array;
|
||||
|
||||
public abstract function IsEnabled(): bool;
|
||||
abstract public function IsEnabled(): bool;
|
||||
|
||||
public abstract function GetDebugTemplate(): string;
|
||||
abstract public function GetDebugTemplate(): string;
|
||||
|
||||
public abstract function GetDebugParams(array $aParams): array;
|
||||
abstract public function GetDebugParams(array $aParams): array;
|
||||
|
||||
public function GetLinkedScripts(): ?array
|
||||
{
|
||||
@@ -35,4 +35,4 @@ abstract class AbstractProfilerExtension implements iProfilerExtension
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user