From b41d413059c0153dc8c5d6cedae5f124b37a4168 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 29 Sep 2020 11:25:31 +0200 Subject: [PATCH] update properties of controller --- lib/Controller/PersonalSettingController.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/Controller/PersonalSettingController.php b/lib/Controller/PersonalSettingController.php index fc42e76..e4d47b0 100644 --- a/lib/Controller/PersonalSettingController.php +++ b/lib/Controller/PersonalSettingController.php @@ -29,14 +29,19 @@ use OCA\SideMenu\Service\ConfigProxy; class PersonalSettingController extends Controller { /** - * @var \OCP\IConfig + * @var IConfig */ protected $config; + /** + * @var ConfigProxy + */ + protected $configProxy; + /** * @var IUserSession */ - private $userSession; + protected $userSession; public function __construct($appName, IRequest $request, IConfig $config, ConfigProxy $configProxy, IUserSession $userSession) {