Index: trunk/phase3/includes/Message.php |
— | — | @@ -4,7 +4,8 @@ |
5 | 5 | * processing them into variety of formats that are needed in MediaWiki. |
6 | 6 | * |
7 | 7 | * It is intented to replace the old wfMsg* functions that over time grew |
8 | | - * unusable. \see https://www.mediawiki.org/wiki/New_messages_API for |
| 8 | + * unusable. |
| 9 | + * @see https://www.mediawiki.org/wiki/New_messages_API for |
9 | 10 | * equivalence between old and new functions. |
10 | 11 | * |
11 | 12 | * Below, you will find several examples of wfMessage() usage. |
— | — | @@ -43,8 +44,8 @@ |
44 | 45 | * wfMessage( 'email-header' )->inLanguage( $user->getOption( 'language' ) )->plain() |
45 | 46 | * @endcode |
46 | 47 | * |
47 | | - * \note You cannot parse the text except in the content or interface |
48 | | - * \note languages |
| 48 | + * @note You cannot parse the text except in the content or interface |
| 49 | + * @note languages |
49 | 50 | * |
50 | 51 | * Comparison with old wfMsg* functions: |
51 | 52 | * |
— | — | @@ -73,9 +74,9 @@ |
74 | 75 | * @todo |
75 | 76 | * - test, can we have tests? |
76 | 77 | * |
77 | | - * \see https://www.mediawiki.org/wiki/WfMessage() |
78 | | - * \see https://www.mediawiki.org/wiki/New_messages_API |
79 | | - * \see https://www.mediawiki.org/wiki/Localisation |
| 78 | + * @see https://www.mediawiki.org/wiki/WfMessage() |
| 79 | + * @see https://www.mediawiki.org/wiki/New_messages_API |
| 80 | + * @see https://www.mediawiki.org/wiki/Localisation |
80 | 81 | * |
81 | 82 | * @since 1.17 |
82 | 83 | * @author Niklas Laxström |