N°3526 - Clean up pass on UIBlockFactories

- Add PHPDoc
- Remove (Object) return type hint on overloadable methods
This commit is contained in:
Molkobain
2021-11-11 15:21:47 +01:00
parent 249fa6ca93
commit a9b30e160f
24 changed files with 130 additions and 41 deletions

View File

@@ -14,18 +14,18 @@ namespace Combodo\iTop\Application\UI\Base;
* @package Combodo\iTop\Application\UI\Base
* @author Eric Espie <eric.espie@combodo.com>
* @since 3.0.0
* @internal
* @api
*/
abstract class AbstractUIBlockFactory implements iUIBlockFactory
{
/**
* @var string
* @used-by static::GetTwigTagName()
* @see static::GetTwigTagName()
*/
public const TWIG_TAG_NAME = 'UIBlock';
/**
* @var string
* @useb-by static::GetUIBlockClassName()
* @see static::GetUIBlockClassName()
*/
public const UI_BLOCK_CLASS_NAME = UIBlock::class;