X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=cbc353161cef34017a4f10a796982104d6ba5e2e;hb=8f13319c73a4b3b865a13105eca4bee53c2eecd8;hp=d8e51b439822fcd9ca242ba59085e6f8318c02f8;hpb=2cc522cdbe46140c708a110b1584ab8eafb96407;p=friendica.git diff --git a/src/DI.php b/src/DI.php index d8e51b4398..cbc353161c 100644 --- a/src/DI.php +++ b/src/DI.php @@ -311,6 +311,22 @@ abstract class DI return self::$dice->create(Factory\Api\Mastodon\Status::class); } + /** + * @return Factory\Api\Mastodon\ScheduledStatus + */ + public static function mstdnScheduledStatus() + { + return self::$dice->create(Factory\Api\Mastodon\ScheduledStatus::class); + } + + /** + * @return Factory\Api\Mastodon\Subscription + */ + public static function mstdnSubscription() + { + return self::$dice->create(Factory\Api\Mastodon\Subscription::class); + } + /** * @return Factory\Api\Mastodon\ListEntity */ @@ -371,11 +387,19 @@ abstract class DI } /** - * @return Model\Storage\IStorage + * @return Model\Storage\IWritableStorage */ public static function storage() { - return self::$dice->create(Model\Storage\IStorage::class); + return self::$dice->create(Model\Storage\IWritableStorage::class); + } + + /** + * @return Model\Log\ParsedLogIterator + */ + public static function parsedLogIterator() + { + return self::$dice->create(Model\Log\ParsedLogIterator::class); } //