summaryrefslogtreecommitdiffstats
path: root/lib/Utility
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-09-20 22:03:05 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-25 19:18:04 +0200
commit60ab4941cc7e6ede095e9e4aee3c2bf9a5c3bff6 (patch)
treebaf0b07dd1c545efeb59437af46a99f4d9f69425 /lib/Utility
parent2c8b4fa019749113658b9ed8cae211b679e4cbc0 (diff)
Move to nextcloud config and update phpunit
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Utility')
-rw-r--r--lib/Utility/PsrLogger.php97
-rw-r--r--lib/Utility/Updater.php12
2 files changed, 11 insertions, 98 deletions
diff --git a/lib/Utility/PsrLogger.php b/lib/Utility/PsrLogger.php
deleted file mode 100644
index 5d9a2529b..000000000
--- a/lib/Utility/PsrLogger.php
+++ /dev/null
@@ -1,97 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Sean Molenaar <sean@seanmolenaar.eu>
- * @copyright 2018 Sean Molenaar
- */
-
-namespace OCA\News\Utility;
-
-use \OCP\ILogger;
-
-/**
- * This is a wrapper to make OC\Log conform to Psr\Log\LoggerInterface
- *
- * @package OCA\News\Utility
- */
-class PsrLogger implements \Psr\Log\LoggerInterface
-{
- private $logger;
- private $appName;
-
- /**
- * PsrLogger constructor.
- *
- * @param ILogger $logger The logger
- * @param string $appName Name of the app
- */
- public function __construct(ILogger $logger, $appName)
- {
- $this->logger = $logger;
- $this->appName = $appName;
- }
-
- public function logException($exception, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->logException($exception, $context);
- }
-
- public function emergency($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->emergency($message, $context);
- }
-
- public function alert($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->alert($message, $context);
- }
-
- public function critical($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->critical($message, $context);
- }
-
- public function error($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->error($message, $context);
- }
-
- public function warning($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->warning($message, $context);
- }
-
- public function notice($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->notice($message, $context);
- }
-
- public function info($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->info($message, $context);
- }
-
- public function debug($message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->debug($message, $context);
- }
-
- public function log($level, $message, array $context = [])
- {
- $context['app'] = $this->appName;
- $this->logger->log($level, $message, $context);
- }
-}
diff --git a/lib/Utility/Updater.php b/lib/Utility/Updater.php
index 02ede9c90..01e07291b 100644
--- a/lib/Utility/Updater.php
+++ b/lib/Utility/Updater.php
@@ -21,9 +21,19 @@ use \OCA\News\Service\ItemService;
class Updater
{
-
+ /**
+ * @var FolderService
+ */
private $folderService;
+
+ /**
+ * @var FeedService
+ */
private $feedService;
+
+ /**
+ * @var ItemService
+ */
private $itemService;
public function __construct(