summaryrefslogtreecommitdiffstats
path: root/appinfo/register_command.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-03-21 21:43:58 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-03-21 21:43:58 +0100
commit169ff3f3aa34382ae576ce2468b1961a203b49d7 (patch)
tree1f9c2ed30722a9f9d1a44b1b8ced5a793460945c /appinfo/register_command.php
parent21ffa118b26672ec94ed5b7e1126e0133cb18048 (diff)
coding style fixes
Diffstat (limited to 'appinfo/register_command.php')
-rw-r--r--appinfo/register_command.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/appinfo/register_command.php b/appinfo/register_command.php
index 7b82ee91c..4dc9228c8 100644
--- a/appinfo/register_command.php
+++ b/appinfo/register_command.php
@@ -10,6 +10,7 @@
*/
$newsApp = new OCA\News\AppInfo\Application();
-$newsCmd = $newsApp->getContainer()->query('OCA\News\Command\GenerateSearchIndices');
+$newsContainer = $newsApp->getContainer();
+$newsCmd = $newsContainer->query('OCA\News\Command\GenerateSearchIndices');
$application->add($newsCmd);