diff options
author | Bart Visscher <bartv@thisnet.nl> | 2014-02-28 13:37:41 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2014-02-28 13:37:41 +0100 |
commit | 89e0763d3d511d2da878db43c89300c51850b0f3 (patch) | |
tree | 83798f7a7ae60b516ea3e7ab913db56002000bec /lib/public/il10n.php | |
parent | 6335f855f9eb5038f3b8bd5cfea4fb9c173fca6d (diff) | |
download | nextcloud-server-89e0763d3d511d2da878db43c89300c51850b0f3.tar.gz nextcloud-server-89e0763d3d511d2da878db43c89300c51850b0f3.zip |
Update PHPDoc for I10N, OC_Config, OC\Template\Base and OCP\IL10N
Diffstat (limited to 'lib/public/il10n.php')
-rw-r--r-- | lib/public/il10n.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/public/il10n.php b/lib/public/il10n.php index 1c025e7824f..bba52b4c4bb 100644 --- a/lib/public/il10n.php +++ b/lib/public/il10n.php @@ -23,7 +23,7 @@ namespace OCP; interface IL10N { /** * Translating - * @param $text String The text we need a translation for + * @param string $text The text we need a translation for * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -34,9 +34,9 @@ interface IL10N { /** * Translating - * @param $text_singular String the string to translate for exactly one object - * @param $text_plural String the string to translate for n objects - * @param $count Integer Number of objects + * @param string $text_singular the string to translate for exactly one object + * @param string $text_plural the string to translate for n objects + * @param Integer $count Number of objects * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -51,8 +51,8 @@ interface IL10N { /** * Localization - * @param $type Type of localization - * @param $params parameters for this localization + * @param string $type Type of localization + * @param array $params parameters for this localization * @return String or false * * Returns the localized data. |