summaryrefslogtreecommitdiffstats
path: root/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php')
-rw-r--r--core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php b/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php
index 3ccaa563e89..e4fb940bb2c 100644
--- a/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php
+++ b/core/Command/Db/Migrations/GenerateFromSchemaFileCommand.php
@@ -39,13 +39,9 @@ class GenerateFromSchemaFileCommand extends GenerateCommand {
/** @var IConfig */
protected $config;
- /** @var IAppManager */
- protected $appManager;
-
public function __construct(IConfig $config, IAppManager $appManager, IDBConnection $connection) {
- parent::__construct($connection);
+ parent::__construct($connection, $appManager);
$this->config = $config;
- $this->appManager = $appManager;
}