]> git.mxchange.org Git - friendica.git/blobdiff - src/DI.php
Replace IHTTPResult for CurlResult usages
[friendica.git] / src / DI.php
index e259c271a00ac4ef6dc82d13b4e21246b76d89eb..cbc353161cef34017a4f10a796982104d6ba5e2e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -239,6 +239,38 @@ 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
+        */
+       public static function mstdnAttachment()
+       {
+               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
         */
@@ -248,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);
        }
 
        /**
@@ -280,19 +312,35 @@ abstract class DI
        }
 
        /**
-        * @return Factory\Api\Mastodon\Mention
+        * @return Factory\Api\Mastodon\ScheduledStatus
         */
-       public static function mstdnMention()
+       public static function mstdnScheduledStatus()
        {
-               return self::$dice->create(Factory\Api\Mastodon\Mention::class);
+               return self::$dice->create(Factory\Api\Mastodon\ScheduledStatus::class);
        }
 
        /**
-        * @return Factory\Api\Mastodon\Tag
+        * @return Factory\Api\Mastodon\Subscription
         */
-       public static function mstdnTag()
+       public static function mstdnSubscription()
        {
-               return self::$dice->create(Factory\Api\Mastodon\Tag::class);
+               return self::$dice->create(Factory\Api\Mastodon\Subscription::class);
+       }
+
+       /**
+        * @return Factory\Api\Mastodon\ListEntity
+        */
+       public static function mstdnList()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\ListEntity::class);
+       }
+
+       /**
+        * @return Factory\Api\Mastodon\Notification
+        */
+       public static function mstdnNotification()
+       {
+               return self::$dice->create(Factory\Api\Mastodon\Notification::class);
        }
 
        /**
@@ -339,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);
        }
 
        //
@@ -395,11 +451,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);
        }
 
        //