Rename \Combodo\iTop\Application\UI\Base\Component\Html\HtmlFactory::MakeP to MakeParagraph

This commit is contained in:
Pierre Goiffon
2021-01-15 13:50:47 +01:00
parent ec8a1af2a5
commit 2f10f24317
2 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ namespace Combodo\iTop\Application\UI\Base\Component\Html;
*/
class HtmlFactory
{
public static function MakeP(string $sContent): Html
public static function MakeParagraph(string $sContent): Html
{
return new Html('<p>'.$sContent.'</p>');
}