X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=430db847700642f640a1d3ea8d8de3cf0ec275bc;hb=b53f2f29339c6b839af30695c68f774de2f888c7;hp=fc18b30b8ea04f3cc9a436973d6baa4e9bf5ca8f;hpb=977248f5105a2b3f127d0aa752ce27214605fbf0;p=friendica.git diff --git a/src/DI.php b/src/DI.php index fc18b30b8e..430db84770 100644 --- a/src/DI.php +++ b/src/DI.php @@ -236,6 +236,14 @@ abstract class DI 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 */ @@ -280,14 +288,6 @@ abstract class DI return self::$dice->create(Model\User\Cookie::class); } - /** - * @return Repository\Notify - */ - public static function notify() - { - return self::$dice->create(Repository\Notify::class); - } - /** * @return Model\Storage\IStorage */ @@ -300,6 +300,14 @@ abstract class DI // "Repository" namespace // + /** + * @return Repository\FSuggest; + */ + public static function fsuggest() + { + return self::$dice->create(Repository\FSuggest::class); + } + /** * @return Repository\Introduction */ @@ -324,6 +332,14 @@ abstract class DI return self::$dice->create(Repository\ProfileField::class); } + /** + * @return Repository\Notify + */ + public static function notify() + { + return self::$dice->create(Repository\Notify::class); + } + // // "Protocol" namespace instances //