aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/IL10N.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2017-07-24 20:17:20 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2017-07-24 20:17:20 +0200
commita9077208174856bae2ce219f00a8c825d58130e1 (patch)
tree381cedeed0ba78bc2370ee1ad119f6eb1d43801d /lib/public/IL10N.php
parent5dc480a38c3755330cda99915a54f72d46df4885 (diff)
downloadnextcloud-server-a9077208174856bae2ce219f00a8c825d58130e1.tar.gz
nextcloud-server-a9077208174856bae2ce219f00a8c825d58130e1.zip
Move \OC_L10N_String to proper \OC\L10N\L10NString
* Proper namespacing * Fixed phpdocs Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/IL10N.php')
-rw-r--r--lib/public/IL10N.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/IL10N.php b/lib/public/IL10N.php
index 0dfe28c2ce8..7856a74219d 100644
--- a/lib/public/IL10N.php
+++ b/lib/public/IL10N.php
@@ -47,7 +47,7 @@ interface IL10N {
* Translating
* @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
+ * @return string Translation or the same text
*
* Returns the translation. If no translation is found, $text will be
* returned.
@@ -61,7 +61,7 @@ interface IL10N {
* @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
+ * @return string Translation or the same text
*
* Returns the translation. If no translation is found, $text will be
* returned. %n will be replaced with the number of objects.