@@ -95,6 +95,9 @@ discard block |
||
95 | 95 | $this->cardMapper->markNotified($card); |
96 | 96 | } |
97 | 97 | |
98 | + /** |
|
99 | + * @param \OCA\Deck\Db\Card $card |
|
100 | + */ |
|
98 | 101 | public function markDuedateAsRead($card) { |
99 | 102 | $notification = $this->notificationManager->createNotification(); |
100 | 103 | $notification |
@@ -104,6 +107,9 @@ discard block |
||
104 | 107 | $this->notificationManager->markProcessed($notification); |
105 | 108 | } |
106 | 109 | |
110 | + /** |
|
111 | + * @param \OCA\Deck\Db\Card $card |
|
112 | + */ |
|
107 | 113 | public function sendCardAssigned($card, $userId) { |
108 | 114 | $boardId = $this->cardMapper->findBoardId($card->getId()); |
109 | 115 | $board = $this->getBoard($boardId); |
@@ -77,7 +77,7 @@ |
||
77 | 77 | * DeckProvider constructor. |
78 | 78 | * |
79 | 79 | * @param IL10N $l10n |
80 | - * @param IUrlGenerator $urlGenerator |
|
80 | + * @param IURLGenerator $urlGenerator |
|
81 | 81 | * @param FullTextSearchService $fullTextSearchService |
82 | 82 | */ |
83 | 83 | public function __construct( |