Skip to content
Snippets Groups Projects
Commit 52656b54 authored by Helmut Hummel's avatar Helmut Hummel
Browse files

[TASK] Lift type restriction in CommandApplication

Instead of requiring strictly the TYPO3 implementation of a console Application,
the property is allowed to hold an instance of the base application class.

Releases: main
Resolves: #100160
Change-Id: I40934ac7a5534f211021b0ab331ca9903a307243
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/78116


Reviewed-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarMarkus Klein <markus.klein@typo3.org>
Reviewed-by: default avatarHelmut Hummel <typo3@helhum.io>
Tested-by: default avatarHelmut Hummel <typo3@helhum.io>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarMarkus Klein <markus.klein@typo3.org>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
parent 4b9f4a4d
Branches
Tags
No related merge requests found
......@@ -15,6 +15,7 @@
namespace TYPO3\CMS\Core\Console;
use Symfony\Component\Console\Application as SymfonyConsoleApplication;
use Symfony\Component\Console\Exception\ExceptionInterface;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Output\ConsoleOutput;
......@@ -49,7 +50,7 @@ class CommandApplication implements ApplicationInterface
protected LanguageServiceFactory $languageServiceFactory;
protected Application $application;
protected SymfonyConsoleApplication $application;
public function __construct(
Context $context,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment