summaryrefslogtreecommitdiffstats
path: root/lib/Controller/ActivityPubController.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/ActivityPubController.php')
-rw-r--r--lib/Controller/ActivityPubController.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/Controller/ActivityPubController.php b/lib/Controller/ActivityPubController.php
index a958f7bc..83646e36 100644
--- a/lib/Controller/ActivityPubController.php
+++ b/lib/Controller/ActivityPubController.php
@@ -74,9 +74,6 @@ class ActivityPubController extends Controller {
/** @var MiscService */
private $miscService;
- /** @var NavigationController */
- private $navigationController;
-
/**
* ActivityPubController constructor.
@@ -94,13 +91,11 @@ class ActivityPubController extends Controller {
IRequest $request, SocialPubController $socialPubController,
ActivityService $activityService, ImportService $importService,
FollowService $followService, ActorService $actorService, NotesRequest $notesRequest,
- NavigationController $navigationController,
MiscService $miscService
) {
parent::__construct(Application::APP_NAME, $request);
$this->socialPubController = $socialPubController;
- $this->navigationController = $navigationController;
$this->activityService = $activityService;
$this->importService = $importService;
@@ -258,7 +253,7 @@ class ActivityPubController extends Controller {
*
* @return Response
*/
- public function followers(string $username, $data): Response {
+ public function followers(string $username): Response {
if (!$this->checkSourceActivityStreams()) {
return $this->socialPubController->followers($username);