summaryrefslogtreecommitdiffstats
path: root/core/Controller/NavigationController.php
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-01-29 12:18:11 +0100
committerJulius Härtl <jus@bitgrid.net>2018-02-12 17:22:32 +0100
commit6211d18dc103dac3bea6e7cf1c05dca6a8ccf774 (patch)
tree8ed76be103d07a450e66e0eb9138d6c26e7cf4ab /core/Controller/NavigationController.php
parentb6da8c527998d44264d3486f2d34e34630a97bee (diff)
downloadnextcloud-server-6211d18dc103dac3bea6e7cf1c05dca6a8ccf774.tar.gz
nextcloud-server-6211d18dc103dac3bea6e7cf1c05dca6a8ccf774.zip
Add tests for NavigationController
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/Controller/NavigationController.php')
-rw-r--r--core/Controller/NavigationController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Controller/NavigationController.php b/core/Controller/NavigationController.php
index d5d8563b593..5850025f450 100644
--- a/core/Controller/NavigationController.php
+++ b/core/Controller/NavigationController.php
@@ -32,8 +32,8 @@ class NavigationController extends Controller {
/** @var INavigationManager */
private $navigationManager;
- public function __construct(IRequest $request, INavigationManager $navigationManager) {
- parent::__construct('core', $request);
+ public function __construct(string $appName, IRequest $request, INavigationManager $navigationManager) {
+ parent::__construct($appName, $request);
$this->navigationManager = $navigationManager;
}