Completed
Pull Request — master (#991)
by Maxence
02:17
created
lib/Middleware/ExceptionMiddleware.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 
24 24
 namespace OCA\Deck\Middleware;
25 25
 
26
-use OCA\Deck\Controller\PageController;
27 26
 use OCA\Deck\StatusException;
28 27
 use OCP\AppFramework\Db\DoesNotExistException;
29 28
 use OCP\AppFramework\Middleware;
Please login to merge, or discard this patch.
lib/AppInfo/Application.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 	 * @throws \OCP\AppFramework\QueryException
156 156
 	 */
157 157
 	protected function registerCommentsEventHandler() {
158
-		$this->getContainer()->getServer()->getCommentsManager()->registerEventHandler(function () {
158
+		$this->getContainer()->getServer()->getCommentsManager()->registerEventHandler(function() {
159 159
 			return $this->getContainer()->query(CommentEventHandler::class);
160 160
 		});
161 161
 	}
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 		/** @var IManager $resourceManager */
176 176
 		$resourceManager = $this->getContainer()->query(IManager::class);
177 177
 		$resourceManager->registerResourceProvider(\OCA\Deck\Collaboration\Resources\ResourceProvider::class);
178
-		\OC::$server->getEventDispatcher()->addListener('\OCP\Collaboration\Resources::loadAdditionalScripts', function () {
178
+		\OC::$server->getEventDispatcher()->addListener('\OCP\Collaboration\Resources::loadAdditionalScripts', function() {
179 179
 			\OCP\Util::addScript('deck', 'build/collections');
180 180
 		});
181 181
 	}
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,6 @@
 block discarded – undo
34 34
 use OCA\Deck\Notification\Notifier;
35 35
 use OCA\Deck\Service\FullTextSearchService;
36 36
 use OCP\AppFramework\App;
37
-use OCA\Deck\Middleware\SharingMiddleware;
38 37
 use OCP\Collaboration\Resources\IManager;
39 38
 use OCP\Comments\CommentsEntityEvent;
40 39
 use OCP\FullTextSearch\IFullTextSearchManager;
Please login to merge, or discard this patch.
lib/Service/BoardService.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
 	public function findAll($since = 0, $details = null) {
98 98
 		$userInfo = $this->getBoardPrerequisites();
99 99
 		$userBoards = $this->boardMapper->findAllByUser($userInfo['user'], null, null, $since);
100
-		$groupBoards = $this->boardMapper->findAllByGroups($userInfo['user'], $userInfo['groups'],null, null,  $since);
101
-		$circleBoards = $this->boardMapper->findAllByCircles($userInfo['user'], null, null,  $since);
100
+		$groupBoards = $this->boardMapper->findAllByGroups($userInfo['user'], $userInfo['groups'], null, null, $since);
101
+		$circleBoards = $this->boardMapper->findAllByCircles($userInfo['user'], null, null, $since);
102 102
 		$complete = array_merge($userBoards, $groupBoards, $circleBoards);
103 103
 		$result = [];
104 104
 		/** @var Board $item */
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 */
139 139
 	public function find($boardId) {
140 140
 
141
-		if ( is_numeric($boardId) === false ) {
141
+		if (is_numeric($boardId) === false) {
142 142
 			throw new BadRequestException('board id must be a number');
143 143
 		}
144 144
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 	 */
187 187
 	public function isArchived($mapper, $id) {
188 188
 
189
-		if (is_numeric($id) === false)  {
189
+		if (is_numeric($id) === false) {
190 190
 			throw new BadRequestException('id must be a number');
191 191
 		}
192 192
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
 			throw new BadRequestException('mapper must be provided');
221 221
 		}
222 222
 
223
-		if (is_numeric($id) === false)  {
223
+		if (is_numeric($id) === false) {
224 224
 			throw new BadRequestException('id must be a number');
225 225
 		}
226 226
 
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
 	 * @throws BadRequestException
359 359
 	 */
360 360
 	public function deleteForce($id) {
361
-		if (is_numeric($id) === false)  {
361
+		if (is_numeric($id) === false) {
362 362
 			throw new BadRequestException('id must be a number');
363 363
 		}
364 364
 
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 			throw new BadRequestException('color must be provided');
393 393
 		}
394 394
 
395
-		if ( is_bool($archived) === false ) {
395
+		if (is_bool($archived) === false) {
396 396
 			throw new BadRequestException('archived must be a boolean');
397 397
 		}
398 398
 
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
 	private function enrichWithStacks($board, $since = -1) {
555 555
 		$stacks = $this->stackMapper->findAll($board->getId(), null, null, $since);
556 556
 
557
-		if(\count($stacks) === 0) {
557
+		if (\count($stacks) === 0) {
558 558
 			return;
559 559
 		}
560 560
 
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
 	private function enrichWithLabels($board, $since = -1) {
565 565
 		$labels = $this->labelMapper->findAll($board->getId(), null, null, $since);
566 566
 
567
-		if(\count($labels) === 0) {
567
+		if (\count($labels) === 0) {
568 568
 			return;
569 569
 		}
570 570
 
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 
574 574
 	private function enrichWithUsers($board, $since = -1) {
575 575
 		$boardUsers = $this->permissionService->findUsers($board->getId());
576
-		if(\count($boardUsers) === 0) {
576
+		if (\count($boardUsers) === 0) {
577 577
 			return;
578 578
 		}
579 579
 		$board->setUsers(array_values($boardUsers));
Please login to merge, or discard this patch.
Doc Comments   +10 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 	}
171 171
 
172 172
 	/**
173
-	 * @return array
173
+	 * @return integer
174 174
 	 */
175 175
 	private function getBoardPrerequisites() {
176 176
 		$groups = $this->groupManager->getUserGroupIds(
@@ -605,6 +605,9 @@  discard block
 block discarded – undo
605 605
 		return $delete;
606 606
 	}
607 607
 
608
+	/**
609
+	 * @param Board $board
610
+	 */
608 611
 	private function enrichWithStacks($board, $since = -1) {
609 612
 		$stacks = $this->stackMapper->findAll($board->getId(), null, null, $since);
610 613
 
@@ -615,6 +618,9 @@  discard block
 block discarded – undo
615 618
 		$board->setStacks($stacks);
616 619
 	}
617 620
 
621
+	/**
622
+	 * @param Board $board
623
+	 */
618 624
 	private function enrichWithLabels($board, $since = -1) {
619 625
 		$labels = $this->labelMapper->findAll($board->getId(), null, null, $since);
620 626
 
@@ -625,6 +631,9 @@  discard block
 block discarded – undo
625 631
 		$board->setLabels($labels);
626 632
 	}
627 633
 
634
+	/**
635
+	 * @param Board $board
636
+	 */
628 637
 	private function enrichWithUsers($board, $since = -1) {
629 638
 		$boardUsers = $this->permissionService->findUsers($board->getId());
630 639
 		if(\count($boardUsers) === 0) {
Please login to merge, or discard this patch.
lib/Service/FullTextSearchService.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
 		try {
100 100
 			$this->fullTextSearchManager->createIndex(
101
-				DeckProvider::DECK_PROVIDER_ID, (string)$cardId, $userId, IIndex::INDEX_FULL
101
+				DeckProvider::DECK_PROVIDER_ID, (string) $cardId, $userId, IIndex::INDEX_FULL
102 102
 			);
103 103
 		} catch (FullTextSearchAppNotAvailableException $e) {
104 104
 		}
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
 		try {
115 115
 			$this->fullTextSearchManager->updateIndexStatus(
116
-			DeckProvider::DECK_PROVIDER_ID, (string)$cardId, IIndex::INDEX_CONTENT
116
+			DeckProvider::DECK_PROVIDER_ID, (string) $cardId, IIndex::INDEX_CONTENT
117 117
 		);
118 118
 		} catch (FullTextSearchAppNotAvailableException $e) {
119 119
 		}
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
 		try {
130 130
 			$this->fullTextSearchManager->updateIndexStatus(
131
-				DeckProvider::DECK_PROVIDER_ID, (string)$cardId, IIndex::INDEX_REMOVE
131
+				DeckProvider::DECK_PROVIDER_ID, (string) $cardId, IIndex::INDEX_REMOVE
132 132
 			);
133 133
 		} catch (FullTextSearchAppNotAvailableException $e) {
134 134
 		}
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	 * @param GenericEvent $e
140 140
 	 */
141 141
 	public function onBoardShares(GenericEvent $e) {
142
-		$boardId = (int)$e->getArgument('boardId');
142
+		$boardId = (int) $e->getArgument('boardId');
143 143
 
144 144
 		$cards = array_map(
145 145
 			function(Card $item) {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 	 * @return IIndexDocument
163 163
 	 */
164 164
 	public function generateIndexDocumentFromCard(Card $card): IIndexDocument {
165
-		$document = new IndexDocument(DeckProvider::DECK_PROVIDER_ID, (string)$card->getId());
165
+		$document = new IndexDocument(DeckProvider::DECK_PROVIDER_ID, (string) $card->getId());
166 166
 
167 167
 		return $document;
168 168
 	}
@@ -176,11 +176,11 @@  discard block
 block discarded – undo
176 176
 	 */
177 177
 	public function fillIndexDocument(IIndexDocument $document) {
178 178
 		/** @var Card $card */
179
-		$card = $this->cardMapper->find((int)$document->getId());
179
+		$card = $this->cardMapper->find((int) $document->getId());
180 180
 
181 181
 		$document->setTitle($card->getTitle());
182 182
 		$document->setContent($card->getDescription());
183
-		$document->setAccess($this->generateDocumentAccessFromCardId((int)$card->getId()));
183
+		$document->setAccess($this->generateDocumentAccessFromCardId((int) $card->getId()));
184 184
 	}
185 185
 
186 186
 
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 	 * @throws MultipleObjectsReturnedException
242 242
 	 */
243 243
 	public function getBoardFromCardId(int $cardId): Board {
244
-		$boardId = (int)$this->cardMapper->findBoardId($cardId);
244
+		$boardId = (int) $this->cardMapper->findBoardId($cardId);
245 245
 		/** @var Board $board */
246 246
 		$board = $this->boardMapper->find($boardId);
247 247
 
Please login to merge, or discard this patch.