X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Ftitle%2FTitleFormatter.php;h=7c71ef5e633a7f2407ad2a9c86be5ceb9682715f;hb=825f0701d8096bbc926ec6c2d0027f0100a398e9;hp=f3822b6b4549bff9311f170cc479e6d5beede531;hpb=12426d4120b4361ae02a5149c82e1512d5a1e712;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/title/TitleFormatter.php b/includes/title/TitleFormatter.php index f3822b6b45..7c71ef5e63 100644 --- a/includes/title/TitleFormatter.php +++ b/includes/title/TitleFormatter.php @@ -31,7 +31,6 @@ * @see https://www.mediawiki.org/wiki/Requests_for_comment/TitleValue */ interface TitleFormatter { - /** * Returns the title formatted for display. * Per default, this includes the namespace but not the fragment. @@ -49,9 +48,9 @@ interface TitleFormatter { /** * Returns the title text formatted for display, without namespace of fragment. * - * @note: Only minimal normalization is applied. Consider using TitleValue::getText() directly. + * @note Only minimal normalization is applied. Consider using TitleValue::getText() directly. * - * @param TitleValue $title the title to format + * @param TitleValue $title The title to format * * @return string */ @@ -60,7 +59,7 @@ interface TitleFormatter { /** * Returns the title formatted for display, including the namespace name. * - * @param TitleValue $title the title to format + * @param TitleValue $title The title to format * * @return string */ @@ -69,7 +68,7 @@ interface TitleFormatter { /** * Returns the title formatted for display, with namespace and fragment. * - * @param TitleValue $title the title to format + * @param TitleValue $title The title to format * * @return string */ @@ -85,7 +84,7 @@ interface TitleFormatter { * @param string $text * * @throws InvalidArgumentException - * @return String + * @return string */ public function getNamespaceName( $namespace, $text ); }