Skip to content

Commit

Permalink
style(cleanup): remove dead code
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schiwon <[email protected]>
  • Loading branch information
blizzz committed Nov 2, 2023
1 parent 7de79a7 commit d363250
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions lib/Dashboard/RecentPagesWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace OCA\Collectives\Dashboard;

use OCA\Collectives\Service\CollectiveService;
use OCA\Collectives\Service\PageService;
use OCA\Collectives\Service\RecentPagesService;
use OCP\Dashboard\IReloadableWidget;
use OCP\Dashboard\Model\WidgetItem;
Expand All @@ -19,21 +17,15 @@ class RecentPagesWidget implements IReloadableWidget {
protected IL10N $l10n;
protected IURLGenerator $urlGenerator;
protected IUserSession $userSession;
protected PageService $pageService;
protected CollectiveService $collectiveService;
protected RecentPagesService $recentPagesService;

public function __construct(
IL10N $l10n,
IURLGenerator $urlGenerator,
IUserSession $userSession,
PageService $pageService,
CollectiveService $collectiveService,
RecentPagesService $recentPagesService
) {
$this->recentPagesService = $recentPagesService;
$this->collectiveService = $collectiveService;
$this->pageService = $pageService;
$this->userSession = $userSession;
$this->urlGenerator = $urlGenerator;
$this->l10n = $l10n;
Expand Down

0 comments on commit d363250

Please sign in to comment.