summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDaniel Opitz <danopz@users.noreply.github.com>2019-04-25 13:04:56 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2019-04-25 13:04:56 +0200
commit10c0b1ff10fc2ada9634a87eea0b8fc0ec980bb6 (patch)
tree984c94850b89696cab291f758ea011e10c989ea0 /lib
parent3b83d8d3cb9cd0a41e699c593399b6f5396d591b (diff)
removed warning about non utf8mb4 charset for mysql/mariadb - #496 (#497)
Signed-off-by: Daniel Opitz <git@copynpaste.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Service/StatusService.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Service/StatusService.php b/lib/Service/StatusService.php
index e611a34ea..85be58a5d 100644
--- a/lib/Service/StatusService.php
+++ b/lib/Service/StatusService.php
@@ -13,8 +13,6 @@
namespace OCA\News\Service;
-use Doctrine\DBAL\Platforms\MySqlPlatform;
-
use OCP\IConfig;
use OCP\IDBConnection;
@@ -22,13 +20,13 @@ use OCA\News\Config\Config;
class StatusService
{
-
+ /** @var IConfig */
private $settings;
+ /** @var Config */
private $config;
+ /** @var string */
private $appName;
- /**
- * @var IDBConnection
- */
+ /** @var IDBConnection */
private $connection;
public function __construct(