X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=doc%2FAddonStorageBackend.md;h=17c3f0414077ee1dfb4d8a800427aea46372e39c;hb=9827e933a2a1b8e93f293d4e6293384126e5784c;hp=f69dfff45a9d03449f51f89d5028c386f0b679cd;hpb=d45575e0fa94b47bc3976adc91dd5d360017e9ae;p=friendica.git diff --git a/doc/AddonStorageBackend.md b/doc/AddonStorageBackend.md index f69dfff45a..17c3f04140 100644 --- a/doc/AddonStorageBackend.md +++ b/doc/AddonStorageBackend.md @@ -136,26 +136,26 @@ namespace Friendica\Addon\samplestorage; use Friendica\Model\Storage\IStorage; -use Friendica\Core\Config; +use Friendica\Core\Config\IConfig; use Friendica\Core\L10n; class SampleStorageBackend implements IStorage { const NAME = 'Sample Storage'; - /** @var Config\IConfiguration */ + /** @var IConfig */ private $config; - /** @var L10n\L10n */ + /** @var L10n */ private $l10n; /** * SampleStorageBackend constructor. - * @param Config\IConfiguration $config The configuration of Friendica + * @param IConfig $config The configuration of Friendica * * 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(IConfig $config, L10n $l10n) { $this->config = $config; $this->l10n = $l10n;