summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2023-01-17 18:25:56 +0100
committerGitHub <noreply@github.com>2023-01-17 18:25:56 +0100
commit312f19d6a4453ffa5c21271e535cf9d97bd4fc82 (patch)
treea69d67e6062d477c4ab78e8b0850d5662129772a
parent9af7ee8d11b43a7a3d14f7aa8390aff0a4174f55 (diff)
parente2f4110a3f0ff8bc5bcc74384b654e5e68824e7b (diff)
downloadnextcloud-server-312f19d6a4453ffa5c21271e535cf9d97bd4fc82.tar.gz
nextcloud-server-312f19d6a4453ffa5c21271e535cf9d97bd4fc82.zip
Merge pull request #36166 from nextcloud/fix/php82/declare-symfony-console-application-property
fix(PHP8.2): Declare Symfony Application property in console application
-rw-r--r--lib/private/Console/Application.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Console/Application.php b/lib/private/Console/Application.php
index 2b48f9f5ada..07e9dbb317b 100644
--- a/lib/private/Console/Application.php
+++ b/lib/private/Console/Application.php
@@ -49,6 +49,7 @@ use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class Application {
/** @var IConfig */
private $config;
+ private SymfonyApplication $application;
/** @var EventDispatcherInterface */
private $dispatcher;
/** @var IRequest */