widgetService = $widgetService; $this->menuService = $menuService; } public function get(): void { $widgetData = $this->widgetService->getMyProjectsWidgetData((int) session('userdata.id')); $this->tpl->assign('background', $_GET['noBackground'] ?? ''); $this->tpl->assign('type', $_GET['type'] ?? 'simple'); $this->tpl->assign('projectTypeAvatars', $this->menuService->getProjectTypeAvatars()); $this->tpl->assign('allProjects', $widgetData['projects']); } }