mirror of
https://github.com/Combodo/iTop.git
synced 2026-08-13 01:08:19 +02:00
18 lines
322 B
PHP
18 lines
322 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (C) 2010-2020 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
|
|
namespace Combodo\iTop\Application\UI\Component\Title;
|
|
|
|
|
|
class TitleFactory
|
|
{
|
|
|
|
public static function MakeForPage(string $sTitle, ?string $sId = null)
|
|
{
|
|
return new Title($sTitle, 1, $sId);
|
|
}
|
|
} |