diff options
Diffstat (limited to 'apps/dashboard/lib/Controller/DashboardController.php')
-rw-r--r-- | apps/dashboard/lib/Controller/DashboardController.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/dashboard/lib/Controller/DashboardController.php b/apps/dashboard/lib/Controller/DashboardController.php index f753ad06f82..687fbace380 100644 --- a/apps/dashboard/lib/Controller/DashboardController.php +++ b/apps/dashboard/lib/Controller/DashboardController.php @@ -1,4 +1,7 @@ <?php + +declare(strict_types=1); + /** * @copyright Copyright (c) 2020 Julius Härtl <jus@bitgrid.net> * @@ -43,7 +46,7 @@ class DashboardController extends Controller { private $dashboardManager; public function __construct( - $appName, + string $appName, IRequest $request, IInitialStateService $initialStateService, IEventDispatcher $eventDispatcher, |