]> git.mxchange.org Git - friendica.git/blobdiff - src/DI.php
Merge pull request #10760 from annando/conversation-moved
[friendica.git] / src / DI.php
index 944fad805d18d8413d6e9a9e12837c646dbc456a..ed67efe0034ceadaf0ac9c63fb5275899746ae9d 100644 (file)
@@ -39,6 +39,17 @@ abstract class DI
                self::$dice = $dice;
        }
 
+       /**
+        * Returns a clone of the current dice instance
+        * This usefull for overloading the current instance with mocked methods during tests
+        *
+        * @return Dice
+        */
+       public static function getDice()
+       {
+               return clone self::$dice;
+       }
+
        //
        // common instances
        //
@@ -123,6 +134,14 @@ abstract class DI
                return self::$dice->create(Content\Item::class);
        }
 
+       /**
+        * @return Content\Conversation
+        */
+       public static function conversation()
+       {
+               return self::$dice->create(Content\Conversation::class);
+       }
+
        /**
         * @return Content\Text\BBCode\Video
         */
@@ -287,14 +306,6 @@ abstract class DI
                return self::$dice->create(Factory\Api\Mastodon\Error::class);
        }
 
-       /**
-        * @return Factory\Api\Mastodon\Field
-        */
-       public static function mstdnField()
-       {
-               return self::$dice->create(Factory\Api\Mastodon\Field::class);
-       }
-
        /**
         * @return Factory\Api\Mastodon\FollowRequest
         */
@@ -320,35 +331,35 @@ abstract class DI
        }
 
        /**
-        * @return Factory\Api\Mastodon\ListEntity
+        * @return Factory\Api\Mastodon\ScheduledStatus
         */
-       public static function mstdnList()
+       public static function mstdnScheduledStatus()
        {
-               return self::$dice->create(Factory\Api\Mastodon\ListEntity::class);
+               return self::$dice->create(Factory\Api\Mastodon\ScheduledStatus::class);
        }
 
        /**
-        * @return Factory\Api\Mastodon\Mention
+        * @return Factory\Api\Mastodon\Subscription
         */
-       public static function mstdnMention()
+       public static function mstdnSubscription()
        {
-               return self::$dice->create(Factory\Api\Mastodon\Mention::class);
+               return self::$dice->create(Factory\Api\Mastodon\Subscription::class);
        }
 
        /**
-        * @return Factory\Api\Mastodon\Notification
+        * @return Factory\Api\Mastodon\ListEntity
         */
-       public static function mstdnNotification()
+       public static function mstdnList()
        {
-               return self::$dice->create(Factory\Api\Mastodon\Notification::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);
        }
 
        /**
@@ -395,11 +406,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);
        }
 
        //
@@ -407,11 +426,11 @@ abstract class DI
        //
 
        /**
-        * @return Network\IHTTPRequest
+        * @return Network\IHTTPClient
         */
-       public static function httpRequest()
+       public static function httpClient()
        {
-               return self::$dice->create(Network\IHTTPRequest::class);
+               return self::$dice->create(Network\IHTTPClient::class);
        }
 
        //