diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-07-25 16:57:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-25 16:57:13 +0200 |
commit | 68c4fc25069b580062752a6f55e47d91be57efae (patch) | |
tree | 0f18f14cfbc555e3e6d4ae38188ce40024a78b12 /lib/private/Setup/AbstractDatabase.php | |
parent | 8d751ff2b429380af7e5c870844a6a32f82f0741 (diff) | |
parent | d254797f561b0f7a2f3feeaa8bb868ad2d3c74be (diff) | |
download | nextcloud-server-68c4fc25069b580062752a6f55e47d91be57efae.tar.gz nextcloud-server-68c4fc25069b580062752a6f55e47d91be57efae.zip |
Merge pull request #5772 from nextcloud/migrations-install
Install nextcloud via migrations instead of the db_structure.xml
Diffstat (limited to 'lib/private/Setup/AbstractDatabase.php')
-rw-r--r-- | lib/private/Setup/AbstractDatabase.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/private/Setup/AbstractDatabase.php b/lib/private/Setup/AbstractDatabase.php index 2fbec326a5d..0e0981e0771 100644 --- a/lib/private/Setup/AbstractDatabase.php +++ b/lib/private/Setup/AbstractDatabase.php @@ -38,8 +38,6 @@ abstract class AbstractDatabase { /** @var IL10N */ protected $trans; /** @var string */ - protected $dbDefinitionFile; - /** @var string */ protected $dbUser; /** @var string */ protected $dbPassword; @@ -58,9 +56,8 @@ abstract class AbstractDatabase { /** @var ISecureRandom */ protected $random; - public function __construct(IL10N $trans, $dbDefinitionFile, SystemConfig $config, ILogger $logger, ISecureRandom $random) { + public function __construct(IL10N $trans, SystemConfig $config, ILogger $logger, ISecureRandom $random) { $this->trans = $trans; - $this->dbDefinitionFile = $dbDefinitionFile; $this->config = $config; $this->logger = $logger; $this->random = $random; |