mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 11:38:44 +02:00
N°3567 - PHPDoc and coding conventions fixes
This commit is contained in:
@@ -8,16 +8,37 @@
|
||||
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
|
||||
*/
|
||||
abstract class AbstractUIBlockFactory implements iUIBlockFactory
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
* @used-by static::GetTwigTagName()
|
||||
*/
|
||||
public const TWIG_TAG_NAME = 'UIBlock';
|
||||
public const UI_BLOCK_CLASS_NAME = "Combodo\\iTop\\Application\\UI\\Base\\UIBlock";
|
||||
/**
|
||||
* @var string
|
||||
* @useb-by 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;
|
||||
|
||||
Reference in New Issue
Block a user