Skip to content
Snippets Groups Projects
Unverified Commit d4a4d5c6 authored by Joas Schilling's avatar Joas Schilling
Browse files

When no user is logged in null is used

parent 1f42a8b5
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ use OCP\Share\IShare;
class Manager {
public const STORAGE = '\OCA\Files_Sharing\External\Storage';
/** @var string */
/** @var string|null */
private $uid;
/** @var IDBConnection */
......@@ -98,7 +98,7 @@ class Manager {
ICloudFederationFactory $cloudFederationFactory,
IGroupManager $groupManager,
IUserManager $userManager,
string $uid,
?string $uid,
IEventDispatcher $eventDispatcher) {
$this->connection = $connection;
$this->mountManager = $mountManager;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment