Merge pull request #21741 from nextcloud/debt/noid/url-generator-does-not-implement-i-user-session

Fix type for $urlGenerator
This commit is contained in:
Morris Jobke 2020-07-08 09:06:56 +02:00 committed by GitHub
commit 54d36c047b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;