N°4621 Fix naming inconsistencies in sources/*

This commit is contained in:
Pierre Goiffon
2021-12-31 15:21:08 +01:00
parent 16142bd979
commit 5f575d524a
192 changed files with 384 additions and 380 deletions

View File

@@ -0,0 +1,47 @@
<?php
/**
* @copyright Copyright (C) 2010-2021 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Application\UI\Base;
/**
* Class AbstractUIBlockFactory
*
* @package Combodo\iTop\Application\UI\Base
* @author Eric Espie <eric.espie@combodo.com>
* @since 3.0.0
* @api
*/
abstract class AbstractUIBlockFactory implements iUIBlockFactory
{
/**
* @var string
* @see static::GetTwigTagName()
*/
public const TWIG_TAG_NAME = 'UIBlock';
/**
* @var string
* @see static::GetUIBlockClassName()
*/
public const UI_BLOCK_CLASS_NAME = UIBlock::class;
/**
* @inheritDoc
*/
public static function GetTwigTagName(): string
{
return static::TWIG_TAG_NAME;
}
/**
* @inheritDoc
*/
public static function GetUIBlockClassName(): string
{
return static::UI_BLOCK_CLASS_NAME;
}
}