X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDI.php;h=c89315c0ec98897e532d5eac0837d163eceae43d;hb=5367620467f690774966c77cf5049ace9e6552a8;hp=83351d34774bb860536e5cd76fd8c6021ae4370a;hpb=07a4bb73fa7d65d00f888eed7dedd1d4e1f623ad;p=friendica.git diff --git a/src/DI.php b/src/DI.php index 83351d3477..c89315c0ec 100644 --- a/src/DI.php +++ b/src/DI.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica; @@ -300,6 +319,14 @@ abstract class DI // "Repository" namespace // + /** + * @return Repository\FSuggest; + */ + public static function fsuggest() + { + return self::$dice->create(Repository\FSuggest::class); + } + /** * @return Repository\Introduction */ @@ -356,6 +383,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 */