diff --git a/communs/changelog.inc.php b/communs/changelog.inc.php index 7d07325..2e1e96e 100644 --- a/communs/changelog.inc.php +++ b/communs/changelog.inc.php @@ -312,12 +312,12 @@ abstract protected static function getHeader(); * @param string $entryId * @return string */ - abstract protected static function getEntryBefore(string $entryTitle, string $entryId); + abstract protected static function getEntryBefore($entryTitle, $entryId); /** * @param string $entryContentItem * @return string */ - abstract protected static function getEntryContentItem(string $entryContentItem); + abstract protected static function getEntryContentItem($entryContentItem); /** * @return string */ @@ -336,14 +336,14 @@ protected static function getHeader() return '
'; } - protected static function getEntryBefore(string $entryTitle, string $entryId) { + protected static function getEntryBefore($entryTitle, $entryId) { return <<{$entryTitle}
- HTML; +HTML; } - protected static function getEntryContentItem(string $entryContentItem) { + protected static function getEntryContentItem($entryContentItem) { return '- ' . $entryContentItem . '
'; } @@ -380,7 +380,7 @@ protected static function getHeader() XML; } - protected static function getEntryBefore(string $entryTitle, string $entryId) + protected static function getEntryBefore($entryTitle, $entryId) { $entryTitleEscaped = htmlspecialchars($entryTitle); return <<