N°3567 - PHPDoc and coding conventions fixes

This commit is contained in:
Molkobain
2021-01-20 13:32:45 +01:00
parent 959cecf891
commit 6ac1cc4831
5 changed files with 89 additions and 20 deletions

View File

@@ -8,9 +8,22 @@
namespace Combodo\iTop\Application\UI\Base;
/**
* Interface UIBlockNode
*
* @package Combodo\iTop\Application\UI\Base
* @author Eric Espie <eric.espie@combodo.com>
* @since 3.0.0
*/
interface iUIBlockFactory
{
/**
* @return string TWIG tag name that will be associated with this factory
*/
public static function GetTwigTagName(): string;
/**
* @return string FQCN of the UIBlock produced by this factory
*/
public static function GetUIBlockClassName(): string;
}