Remove get_app() in favor of DI::app()

This commit is contained in:
nupplaPhil 2020-01-04 23:42:01 +01:00
parent 5d20cd7e16
commit f0eea6f875
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
26 changed files with 110 additions and 97 deletions

View file

@ -48,8 +48,6 @@ class Worker
*/
public static function processQueue($run_cron = true)
{
$a = \get_app();
// Ensure that all "strtotime" operations do run timezone independent
date_default_timezone_set('UTC');
@ -372,7 +370,7 @@ class Worker
*/
private static function execFunction($queue, $funcname, $argv, $method_call)
{
$a = \get_app();
$a = DI::app();
$argc = count($argv);
@ -1083,7 +1081,7 @@ class Worker
$args = ['no_cron' => !$do_cron];
$a = get_app();
$a = DI::app();
$process = new Core\Process(DI::logger(), DI::mode(), DI::config(), $a->getBasePath());
$process->run($command, $args);