Provide $_SERVER to App::processConsole()

This commit is contained in:
Art4 2025-01-22 13:47:58 +00:00
commit c9bcc45d7c
5 changed files with 14 additions and 5 deletions

View file

@ -181,8 +181,11 @@ class App
);
}
public function processConsole(array $argv): void
public function processConsole(array $serverParams): void
{
$argv = $serverParams['argv'] ?? [];
$this->setupContainerForAddons();
$this->setupLogChannel($this->determineLogChannel($argv));