X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=4645ea252db915cfe171c8cccad5771fa4f8c18d;hb=a19a7dc2a0c0a22fd306e162383ef7117c1baca2;hp=045425b8871df888f67a2cd08914b7ed8874294f;hpb=5bb5c44bd9c3063b4f78a74a487353d2ef842cdd;p=friendica.git diff --git a/src/DI.php b/src/DI.php index 045425b887..4645ea252d 100644 --- a/src/DI.php +++ b/src/DI.php @@ -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 // @@ -239,6 +250,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 +266,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 */ @@ -263,14 +298,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 */ @@ -296,27 +323,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\Subscription + */ + public static function mstdnSubscription() + { + return self::$dice->create(Factory\Api\Mastodon\Subscription::class); } /** - * @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); } /** @@ -363,11 +398,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); } // @@ -375,11 +418,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); } //