X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=d8e51b439822fcd9ca242ba59085e6f8318c02f8;hb=e0fdde32878216e1c291386e7d3931ac0de5c807;hp=06397d0e235970bf97244633352b7b27d700106f;hpb=7feb8aae5ec31f0027c55191882f6661e40f047a;p=friendica.git diff --git a/src/DI.php b/src/DI.php index 06397d0e23..d8e51b4398 100644 --- a/src/DI.php +++ b/src/DI.php @@ -1,6 +1,6 @@ create(Factory\Api\Mastodon\Account::class); } + /** + * @return Factory\Api\Mastodon\Application + */ + public static function mstdnApplication() + { + return self::$dice->create(Factory\Api\Mastodon\Application::class); + } + /** * @return Factory\Api\Mastodon\Attachment */ @@ -247,6 +255,22 @@ abstract class DI return self::$dice->create(Factory\Api\Mastodon\Attachment::class); } + /** + * @return Factory\Api\Mastodon\Card + */ + public static function mstdnCard() + { + return self::$dice->create(Factory\Api\Mastodon\Card::class); + } + + /** + * @return Factory\Api\Mastodon\Conversation + */ + public static function mstdnConversation() + { + return self::$dice->create(Factory\Api\Mastodon\Conversation::class); + } + /** * @return Factory\Api\Mastodon\Emoji */ @@ -256,11 +280,11 @@ abstract class DI } /** - * @return Factory\Api\Mastodon\Field + * @return Factory\Api\Mastodon\Error */ - public static function mstdnField() + public static function mstdnError() { - return self::$dice->create(Factory\Api\Mastodon\Field::class); + return self::$dice->create(Factory\Api\Mastodon\Error::class); } /** @@ -288,19 +312,19 @@ abstract class DI } /** - * @return Factory\Api\Mastodon\Mention + * @return Factory\Api\Mastodon\ListEntity */ - public static function mstdnMention() + public static function mstdnList() { - return self::$dice->create(Factory\Api\Mastodon\Mention::class); + return self::$dice->create(Factory\Api\Mastodon\ListEntity::class); } /** - * @return Factory\Api\Mastodon\Tag + * @return Factory\Api\Mastodon\Notification */ - public static function mstdnTag() + public static function mstdnNotification() { - return self::$dice->create(Factory\Api\Mastodon\Tag::class); + return self::$dice->create(Factory\Api\Mastodon\Notification::class); } /** @@ -403,11 +427,11 @@ abstract class DI } /** - * @return Repository\Notify + * @return Repository\Notification */ public static function notify() { - return self::$dice->create(Repository\Notify::class); + return self::$dice->create(Repository\Notification::class); } //