Create AppHelper class

This commit is contained in:
Art4 2024-11-06 07:32:07 +00:00
commit 81b0bab084
2 changed files with 54 additions and 0 deletions

View file

@ -78,6 +78,11 @@ abstract class DI
return self::$dice->create(App::class);
}
public static function apphelper(): AppHelper
{
return self::$dice->create(AppHelper::class);
}
/**
* @return Database\Database
*/