Passed
Pull Request — master (#885)
by Maxence
02:24
created
lib/Notification/NotificationHelper.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -95,6 +95,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
lib/Provider/DeckProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
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(
Please login to merge, or discard this patch.