X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=65c82225d54c1f3757283e6781094701cd1b2724;hb=7909d9c41741630a4c8e3e799429d58995ec7eea;hp=22c81079b9a715fbb50f28f91b170b12cc8a2e85;hpb=04d620fc2f567d32b50f5d5b0974acafeb072177;p=friendica.git diff --git a/src/DI.php b/src/DI.php index 22c81079b9..65c82225d5 100644 --- a/src/DI.php +++ b/src/DI.php @@ -141,7 +141,7 @@ abstract class DI } /** - * @return \Friendica\Core\PConfig\IPConfig + * @return Core\PConfig\IPConfig */ public static function pConfig() { @@ -221,27 +221,51 @@ abstract class DI // /** - * @return Factory\Mastodon\Account + * @return Factory\Api\Mastodon\Account */ public static function mstdnAccount() { - return self::$dice->create(Factory\Mastodon\Account::class); + return self::$dice->create(Factory\Api\Mastodon\Account::class); } /** - * @return Factory\Mastodon\FollowRequest + * @return Factory\Api\Mastodon\Emoji + */ + public static function mstdnEmoji() + { + return self::$dice->create(Factory\Api\Mastodon\Emoji::class); + } + + /** + * @return Factory\Api\Mastodon\FollowRequest */ public static function mstdnFollowRequest() { - return self::$dice->create(Factory\Mastodon\FollowRequest::class); + return self::$dice->create(Factory\Api\Mastodon\FollowRequest::class); } /** - * @return Factory\Mastodon\Relationship + * @return Factory\Api\Mastodon\Relationship */ public static function mstdnRelationship() { - return self::$dice->create(Factory\Mastodon\Relationship::class); + return self::$dice->create(Factory\Api\Mastodon\Relationship::class); + } + + /** + * @return Factory\Notification\Notification + */ + public static function notification() + { + return self::$dice->create(Factory\Notification\Notification::class); + } + + /** + * @return Factory\Notification\Introduction + */ + public static function notificationIntro() + { + return self::$dice->create(Factory\Notification\Introduction::class); } // @@ -256,14 +280,6 @@ abstract class DI return self::$dice->create(Model\User\Cookie::class); } - /** - * @return Model\Notify - */ - public static function notify() - { - return self::$dice->create(Model\Notify::class); - } - /** * @return Model\Storage\IStorage */ @@ -284,6 +300,30 @@ abstract class DI return self::$dice->create(Repository\Introduction::class); } + /** + * @return Repository\PermissionSet + */ + public static function permissionSet() + { + return self::$dice->create(Repository\PermissionSet::class); + } + + /** + * @return Repository\ProfileField + */ + public static function profileField() + { + return self::$dice->create(Repository\ProfileField::class); + } + + /** + * @return Repository\Notify + */ + public static function notify() + { + return self::$dice->create(Repository\Notify::class); + } + // // "Protocol" namespace instances // @@ -331,4 +371,12 @@ abstract class DI { return self::$dice->create(Util\Profiler::class); } + + /** + * @return Util\Emailer + */ + public static function emailer() + { + return self::$dice->create(Util\Emailer::class); + } }