diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-28 22:08:32 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-28 22:16:28 +0200 |
commit | 83e7cfd13a6592d72c29eabdfce61c91f3d49630 (patch) | |
tree | befb9165faf3426641ed3c286a0f4c45c3d769f9 /lib/private/legacy | |
parent | 740659a04c28f8b2bfd9265d459dd3bca202300f (diff) | |
download | nextcloud-server-83e7cfd13a6592d72c29eabdfce61c91f3d49630.tar.gz nextcloud-server-83e7cfd13a6592d72c29eabdfce61c91f3d49630.zip |
Fix more tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/l10n/string.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/legacy/l10n/string.php b/lib/private/legacy/l10n/string.php index 3d9d72e0690..1410db6d730 100644 --- a/lib/private/legacy/l10n/string.php +++ b/lib/private/legacy/l10n/string.php @@ -27,7 +27,7 @@ */ class OC_L10N_String implements JsonSerializable { - /** @var \OC_L10N|\OC\L10N\L10N */ + /** @var \OC\L10N\L10N */ protected $l10n; /** @var string */ @@ -40,12 +40,12 @@ class OC_L10N_String implements JsonSerializable { protected $count; /** - * @param \OC_L10N|\OC\L10N\L10N $l10n + * @param \OC\L10N\L10N $l10n * @param string|string[] $text * @param array $parameters * @param int $count */ - public function __construct($l10n, $text, $parameters, $count = 1) { + public function __construct(\OC\L10N\L10N $l10n, $text, $parameters, $count = 1) { $this->l10n = $l10n; $this->text = $text; $this->parameters = $parameters; |