X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FAddonStorageBackend.md;h=ed6c5d87ae5853e5b29d543d361106aa79b36e82;hb=2838635d648cee828f1f2dc29a499e0a61a3b9a1;hp=f69dfff45a9d03449f51f89d5028c386f0b679cd;hpb=fa39a455a759d223d2993950ec9ed555b3046b2b;p=friendica.git diff --git a/doc/AddonStorageBackend.md b/doc/AddonStorageBackend.md index f69dfff45a..ed6c5d87ae 100644 --- a/doc/AddonStorageBackend.md +++ b/doc/AddonStorageBackend.md @@ -145,7 +145,7 @@ class SampleStorageBackend implements IStorage /** @var Config\IConfiguration */ private $config; - /** @var L10n\L10n */ + /** @var \Friendica\Core\L10n */ private $l10n; /** @@ -155,7 +155,7 @@ class SampleStorageBackend implements IStorage * You can add here every dynamic class as dependency you like and add them to a private field * Friendica automatically creates these classes and passes them as argument to the constructor */ - public function __construct(Config\IConfiguration $config, L10n\L10n $l10n) + public function __construct(Config\IConfiguration $config, \Friendica\Core\L10n $l10n) { $this->config = $config; $this->l10n = $l10n;