diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-01-03 15:28:31 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-01-08 11:45:19 +0100 |
commit | 8b64e92b9262d2a2eec6345685ce421050f95c66 (patch) | |
tree | dd51490b8a184b2643414d11867a9fa450aa5065 /lib/private/AppConfig.php | |
parent | 84e6e9f7cf19207041925eaa237d24e1c12c2c2d (diff) | |
download | nextcloud-server-8b64e92b9262d2a2eec6345685ce421050f95c66.tar.gz nextcloud-server-8b64e92b9262d2a2eec6345685ce421050f95c66.zip |
Bump doctrine/dbal from 2.12.0 to 3.0.0
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/AppConfig.php')
-rw-r--r-- | lib/private/AppConfig.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php index 84305e60a12..6a0dc2fab2b 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -33,10 +33,10 @@ namespace OC; +use OC\DB\Connection; use OC\DB\OracleConnection; use OCP\IAppConfig; use OCP\IConfig; -use OCP\IDBConnection; /** * This class provides an easy way for apps to store config values in the @@ -68,7 +68,7 @@ class AppConfig implements IAppConfig { ], ]; - /** @var \OCP\IDBConnection */ + /** @var Connection */ protected $conn; /** @var array[] */ @@ -78,11 +78,10 @@ class AppConfig implements IAppConfig { private $configLoaded = false; /** - * @param IDBConnection $conn + * @param Connection $conn */ - public function __construct(IDBConnection $conn) { + public function __construct(Connection $conn) { $this->conn = $conn; - $this->configLoaded = false; } /** |