summaryrefslogtreecommitdiffstats
path: root/appinfo/register_command.php
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo/register_command.php')
-rw-r--r--appinfo/register_command.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/appinfo/register_command.php b/appinfo/register_command.php
deleted file mode 100644
index 1fc006b76..000000000
--- a/appinfo/register_command.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2016
- */
-
-namespace OCA\News\AppInfo;
-
-use OCA\News\Command\ShowFeed;
-use OCA\News\Command\Updater\UpdateFeed;
-use OCA\News\Command\Updater\AllFeeds;
-use OCA\News\Command\Updater\BeforeUpdate;
-use OCA\News\Command\Updater\AfterUpdate;
-use OCA\News\Command\ExploreGenerator;
-
-$app = new Application();
-$container = $app->getContainer();
-$application->add($container->query(AllFeeds::class));
-$application->add($container->query(UpdateFeed::class));
-$application->add($container->query(BeforeUpdate::class));
-$application->add($container->query(AfterUpdate::class));
-$application->add($container->query(ExploreGenerator::class));
-$application->add($container->query(ShowFeed::class));