Add missing userId property

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2022-11-09 08:53:38 +01:00
parent 4bc7a61f8f
commit e93006ded0

View File

@@ -40,6 +40,7 @@ class CardReferenceProvider implements IReferenceProvider {
private IURLGenerator $urlGenerator; private IURLGenerator $urlGenerator;
private BoardService $boardService; private BoardService $boardService;
private StackService $stackService; private StackService $stackService;
private ?string $userId;
public function __construct(CardService $cardService, public function __construct(CardService $cardService,
BoardService $boardService, BoardService $boardService,
@@ -50,6 +51,7 @@ class CardReferenceProvider implements IReferenceProvider {
$this->urlGenerator = $urlGenerator; $this->urlGenerator = $urlGenerator;
$this->boardService = $boardService; $this->boardService = $boardService;
$this->stackService = $stackService; $this->stackService = $stackService;
$this->userId = $userId;
} }
/** /**