X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=73f9b7811d37abf5e6f38752e5c2f599ebb4980c;hb=11de5be0ae6d28880b12cc4b1fd65c56924b4aad;hp=1109b1afb3f940863603c007b3c5e082d707c359;hpb=cb80108957f16011b5b7b1b8961da8cbd78d60c9;p=friendica.git diff --git a/src/DI.php b/src/DI.php index 1109b1afb3..73f9b7811d 100644 --- a/src/DI.php +++ b/src/DI.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica; @@ -44,14 +63,6 @@ abstract class DI // "App" namespace instances // - /** - * @return App\Authentication - */ - public static function auth() - { - return self::$dice->create(App\Authentication::class); - } - /** * @return App\Arguments */ @@ -141,11 +152,11 @@ abstract class DI } /** - * @return Core\Config\IPConfiguration + * @return Core\PConfig\IPConfig */ public static function pConfig() { - return self::$dice->create(Core\Config\IPConfiguration::class); + return self::$dice->create(Core\PConfig\IPConfig::class); } /** @@ -221,32 +232,87 @@ 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\Field + */ + public static function mstdnField() + { + return self::$dice->create(Factory\Api\Mastodon\Field::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\Api\Mastodon\Status + */ + public static function mstdnStatus() + { + return self::$dice->create(Factory\Api\Mastodon\Status::class); + } + + /** + * @return Factory\Api\Twitter\User + */ + public static function twitterUser() + { + return self::$dice->create(Factory\Api\Twitter\User::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); } // // "Model" namespace instances // + /** + * @return Model\Process + */ + public static function modelProcess() + { + return self::$dice->create(Model\Process::class); + } /** * @return Model\User\Cookie @@ -257,25 +323,37 @@ abstract class DI } /** - * @return Model\Notify + * @return Model\Storage\IStorage */ - public static function notify() + public static function storage() { - return self::$dice->create(Model\Notify::class); + return self::$dice->create(Model\Storage\IStorage::class); } + // + // "Network" namespace + // + /** - * @return Model\Storage\IStorage + * @return Network\IHTTPRequest */ - public static function storage() + public static function httpRequest() { - return self::$dice->create(Model\Storage\IStorage::class); + return self::$dice->create(Network\IHTTPRequest::class); } // // "Repository" namespace // + /** + * @return Repository\FSuggest; + */ + public static function fsuggest() + { + return self::$dice->create(Repository\FSuggest::class); + } + /** * @return Repository\Introduction */ @@ -284,6 +362,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 // @@ -296,6 +398,18 @@ abstract class DI return self::$dice->create(Protocol\Activity::class); } + // + // "Security" namespace instances + // + + /** + * @return \Friendica\Security\Authentication + */ + public static function auth() + { + return self::$dice->create(Security\Authentication::class); + } + // // "Util" namespace instances // @@ -308,6 +422,14 @@ abstract class DI return self::$dice->create(Util\ACLFormatter::class); } + /** + * @return string + */ + public static function basePath() + { + return self::$dice->create('$basepath'); + } + /** * @return Util\DateTimeFormat */ @@ -331,4 +453,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); + } }