X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=430db847700642f640a1d3ea8d8de3cf0ec275bc;hb=b53f2f29339c6b839af30695c68f774de2f888c7;hp=65c82225d54c1f3757283e6781094701cd1b2724;hpb=d84ceb327a59874564c92ff9942ace76d8141a64;p=friendica.git diff --git a/src/DI.php b/src/DI.php index 65c82225d5..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 */ @@ -292,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 */