]> git.mxchange.org Git - friendica.git/blobdiff - src/DI.php
Merge pull request #10372 from annando/forum-handling
[friendica.git] / src / DI.php
index c2f53e4df9e533d768f93089ebcfa5e7cd2d7906..944fad805d18d8413d6e9a9e12837c646dbc456a 100644 (file)
@@ -239,6 +239,14 @@ abstract class DI
                return self::$dice->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
         */
@@ -295,6 +319,14 @@ abstract class DI
                return self::$dice->create(Factory\Api\Mastodon\Status::class);
        }
 
+       /**
+        * @return Factory\Api\Mastodon\ListEntity
+        */
+       public static function mstdnList()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\ListEntity::class);
+       }
+
        /**
         * @return Factory\Api\Mastodon\Mention
         */
@@ -303,6 +335,14 @@ abstract class DI
                return self::$dice->create(Factory\Api\Mastodon\Mention::class);
        }
 
+       /**
+        * @return Factory\Api\Mastodon\Notification
+        */
+       public static function mstdnNotification()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\Notification::class);
+       }
+
        /**
         * @return Factory\Api\Mastodon\Tag
         */