summaryrefslogtreecommitdiffstats
path: root/lib/Command/ShowFeed.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/ShowFeed.php')
-rw-r--r--lib/Command/ShowFeed.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/Command/ShowFeed.php b/lib/Command/ShowFeed.php
index 572b68e26..878b71123 100644
--- a/lib/Command/ShowFeed.php
+++ b/lib/Command/ShowFeed.php
@@ -13,7 +13,15 @@ namespace OCA\News\Command;
use FeedIo\FeedIo;
use Favicon\Favicon;
+use HTMLPurifier;
+use OCA\News\Db\FeedMapper;
+use OCA\News\Db\ItemMapper;
use OCA\News\Fetcher\Fetcher;
+use OCA\News\Service\FeedService;
+use OCA\News\Utility\Time;
+use OCP\IConfig;
+use OCP\IL10N;
+use OCP\ILogger;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
@@ -38,8 +46,8 @@ class ShowFeed extends Command
*/
public function __construct(Fetcher $feedFetcher)
{
- $this->feedFetcher = $feedFetcher;
parent::__construct();
+ $this->feedFetcher = $feedFetcher;
}
protected function configure()