Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/survey_client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Categories/Database.php')
-rw-r--r--lib/Categories/Database.php12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/Categories/Database.php b/lib/Categories/Database.php
index 2e55aed..30846d1 100644
--- a/lib/Categories/Database.php
+++ b/lib/Categories/Database.php
@@ -31,20 +31,15 @@ use OCP\IL10N;
* @package OCA\Survey_Client\Categories
*/
class Database implements ICategory {
- /** @var \OCP\IConfig */
+ /** @var IConfig */
protected $config;
- /** @var \OCP\IDBConnection */
+ /** @var IDBConnection */
protected $connection;
- /** @var \OCP\IL10N */
+ /** @var IL10N */
protected $l;
- /**
- * @param IConfig $config
- * @param IDBConnection $connection
- * @param IL10N $l
- */
public function __construct(IConfig $config, IDBConnection $connection, IL10N $l) {
$this->config = $config;
$this->connection = $connection;
@@ -137,6 +132,7 @@ class Database implements ICategory {
if (file_exists($this->config->getSystemValue('dbhost'))) {
$database_size = filesize($this->config->getSystemValue('dbhost'));
} else {
+ /** @psalm-suppress UndefinedInterfaceMethod */
$params = $this->connection->getParams();
if (file_exists($params['path'])) {
$database_size = filesize($params['path']);