summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-10-04 20:17:15 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-10-05 09:48:28 +0200
commit4425e9da42449413060d99b120b2933326a075c6 (patch)
treea5454f4944f17808c84bd4ef4e0514230b7e455b
parent49c6f7077d558c1e8aa897d1cba2292a8def94d5 (diff)
Fix Application class loading in config
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
-rw-r--r--lib/Migration/MigrateConfig.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Migration/MigrateConfig.php b/lib/Migration/MigrateConfig.php
index e07760d64..50d335892 100644
--- a/lib/Migration/MigrateConfig.php
+++ b/lib/Migration/MigrateConfig.php
@@ -33,8 +33,9 @@ class MigrateConfig implements IRepairStep
/**
* @param LegacyConfig $config
* @param IConfig $iConfig
+ * @param Application $application To make sure the class is found below
*/
- public function __construct(LegacyConfig $config, IConfig $iConfig)
+ public function __construct(LegacyConfig $config, IConfig $iConfig, Application $application)
{
$this->config = $config;
$this->iConfig = $iConfig;