Fix type for $urlGenerator

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2020-07-08 00:53:25 +02:00 committed by Morris Jobke
parent 47a21fad8c
commit ba0ef74c06
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 1 additions and 2 deletions

View File

@ -33,13 +33,12 @@ use OCP\IGroupManager;
use OCP\INavigationManager;
use OCP\IRequest;
use OCP\IURLGenerator;
use OCP\IUserSession;
class HelpController extends Controller {
/** @var INavigationManager */
private $navigationManager;
/** @var IUserSession */
/** @var IURLGenerator */
private $urlGenerator;
/** @var IGroupManager */
private $groupManager;