summaryrefslogtreecommitdiffstats
path: root/appinfo/register_command.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-08-24 22:06:34 +0200
committerSean Molenaar <SMillerDev@users.noreply.github.com>2020-08-26 22:48:17 +0200
commitb73c7c0f8a43b5c4e65ca4daeb0ec7dc4c7c2306 (patch)
tree751e5310b824c343ec0c199fd9c3b1eb1b14b0ff /appinfo/register_command.php
parente42150067ba185516caf370b725574f0db68e122 (diff)
Cleanup appinfo files
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
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));