Refactor dynamic App::getLogger() to static DI::logger()

This commit is contained in:
nupplaPhil 2019-12-15 23:46:56 +01:00
parent fceb4f3823
commit e2b2778e0a
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
9 changed files with 11 additions and 22 deletions

View file

@ -20,7 +20,7 @@ class RemoveTag extends BaseModule
}
$app = DI::app();
$logger = $app->getLogger();
$logger = DI::logger();
$item_id = (($app->argc > 1) ? intval($app->argv[1]) : 0);

View file

@ -26,7 +26,7 @@ class SaveTag extends BaseModule
public static function rawContent(array $parameters = [])
{
$a = DI::app();
$logger = $a->getLogger();
$logger = DI::logger();
$term = XML::unescape(trim($_GET['term'] ?? ''));
// @TODO: Replace with parameter from router