Update core/Controller/CollaborationResourcesController.php

Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
This commit is contained in:
Faraz Samapoor 2023-06-05 16:45:21 +03:30 committed by GitHub
parent 2713ab023f
commit 05784c3244
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,11 +42,13 @@ use OCP\IUserSession;
use Psr\Log\LoggerInterface;
class CollaborationResourcesController extends OCSController {
public function __construct(string $appName,
IRequest $request,
private IManager $manager,
private IUserSession $userSession,
private LoggerInterface $logger) {
public function __construct(
string $appName,
IRequest $request,
private IManager $manager,
private IUserSession $userSession,
private LoggerInterface $logger,
) {
parent::__construct($appName, $request);
}