update properties of controller

This commit is contained in:
Simon Vieille 2020-09-29 11:25:31 +02:00
parent cc0fac6486
commit b41d413059
Signed by: deblan
GPG Key ID: 03383D15A1D31745
1 changed files with 7 additions and 2 deletions

View File

@ -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)
{