X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=9ed0c5b24d353f5ed5c1c124c31eae1ebce86cd5;hb=8ec2b21a1471f0a3c0afdbe56fb525c1b4b06efc;hp=b1d2b82c1dd3653397418e71ac9fca327452b275;hpb=f3f764bc39fe0210ac4cc995cf72ea99fac7bef3;p=friendica.git diff --git a/src/DI.php b/src/DI.php index b1d2b82c1d..9ed0c5b24d 100644 --- a/src/DI.php +++ b/src/DI.php @@ -279,6 +279,14 @@ abstract class DI return self::$dice->create(Factory\Api\Mastodon\Relationship::class); } + /** + * @return Factory\Api\Twitter\User + */ + public static function twitterUser() + { + return self::$dice->create(Factory\Api\Twitter\User::class); + } + /** * @return Factory\Notification\Notification */ @@ -315,12 +323,6 @@ abstract class DI return self::$dice->create(Model\Storage\IStorage::class); } - /** @return Model\UserService */ - public static function userService() - { - return self::$dice->create(Model\UserService::class); - } - // // "Repository" namespace // @@ -389,6 +391,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 */