Remove type Or

pull/37/head
Varun Patil 2022-09-13 15:01:03 -07:00
parent 8296a75bdf
commit 58aa071e9e
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ use OCP\IUserSession;
use OCP\Util;
class PageController extends Controller {
protected string | null $userId;
protected string $userId;
protected $appName;
protected IEventDispatcher $eventDispatcher;
private IInitialState $initialState;
@ -23,7 +23,7 @@ class PageController extends Controller {
public function __construct(
string $AppName,
IRequest $request,
string | null $UserId,
string $UserId,
IEventDispatcher $eventDispatcher,
IInitialState $initialState,
IUserSession $userSession,