@@ -94,6 +94,9 @@ |
||
94 | 94 | $this->cardMapper->markNotified($card); |
95 | 95 | } |
96 | 96 | |
97 | + /** |
|
98 | + * @param \OCA\Deck\Db\Card $card |
|
99 | + */ |
|
97 | 100 | public function sendCardAssigned($card, $userId) { |
98 | 101 | $boardId = $this->cardMapper->findBoardId($card->getId()); |
99 | 102 | $board = $this->getBoard($boardId); |
@@ -112,6 +112,6 @@ |
||
112 | 112 | ['name' => 'attachment_api#delete', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}', 'verb' => 'DELETE'], |
113 | 113 | ['name' => 'attachment_api#restore', 'url' => '/api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId}/restore', 'verb' => 'PUT'], |
114 | 114 | |
115 | - ['name' => 'board_api#preflighted_cors', 'url' => '/api/v1.0/{path}','verb' => 'OPTIONS', 'requirements' => ['path' => '.+']], |
|
115 | + ['name' => 'board_api#preflighted_cors', 'url' => '/api/v1.0/{path}', 'verb' => 'OPTIONS', 'requirements' => ['path' => '.+']], |
|
116 | 116 | ] |
117 | 117 | ]; |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | private $config; |
41 | 41 | private $l10n; |
42 | 42 | |
43 | - public function __construct( |
|
43 | + public function __construct( |
|
44 | 44 | IL10N $l10n, |
45 | 45 | BoardMapper $boardMapper, |
46 | 46 | BoardService $boardService, |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | $this->config = $config; |
56 | 56 | $this->boardMapper = $boardMapper; |
57 | 57 | $this->l10n = $l10n; |
58 | - } |
|
58 | + } |
|
59 | 59 | |
60 | 60 | /** |
61 | 61 | * @param $userId |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | } |
74 | 74 | |
75 | 75 | return false; |
76 | - } |
|
76 | + } |
|
77 | 77 | |
78 | 78 | /** |
79 | 79 | * @param $title |
@@ -100,9 +100,9 @@ discard block |
||
100 | 100 | throw new BadRequestException('color must be provided'); |
101 | 101 | } |
102 | 102 | |
103 | - $defaultBoard = $this->boardService->create($title, $userId, $color); |
|
104 | - $defaultStacks = []; |
|
105 | - $defaultCards = []; |
|
103 | + $defaultBoard = $this->boardService->create($title, $userId, $color); |
|
104 | + $defaultStacks = []; |
|
105 | + $defaultCards = []; |
|
106 | 106 | |
107 | 107 | $boardId = $defaultBoard->getId(); |
108 | 108 | |
@@ -115,5 +115,5 @@ discard block |
||
115 | 115 | $defaultCards[] = $this->cardService->create($this->l10n->t('Example Task 1'), $defaultStacks[2]->getId(), 'text', 0, $userId); |
116 | 116 | |
117 | 117 | return $defaultBoard; |
118 | - } |
|
118 | + } |
|
119 | 119 | } |
120 | 120 | \ No newline at end of file |
@@ -25,10 +25,8 @@ |
||
25 | 25 | namespace OCA\Deck\Controller; |
26 | 26 | |
27 | 27 | use OCP\AppFramework\ApiController; |
28 | -use OCP\AppFramework\Http; |
|
29 | 28 | use OCP\AppFramework\Http\DataResponse; |
30 | 29 | use OCP\IRequest; |
31 | - |
|
32 | 30 | use OCA\Deck\Service\BoardService; |
33 | 31 | |
34 | 32 | /** |
@@ -173,6 +173,9 @@ |
||
173 | 173 | return ($board->getOwner() === $userId); |
174 | 174 | } |
175 | 175 | |
176 | + /** |
|
177 | + * @param string $id |
|
178 | + */ |
|
176 | 179 | public function findBoardId($id) { |
177 | 180 | return $id; |
178 | 181 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * |
22 | 22 | */ |
23 | 23 | |
24 | -if ((@include_once __DIR__ . '/../vendor/autoload.php')===false) { |
|
24 | +if ((@include_once __DIR__ . '/../vendor/autoload.php') === false) { |
|
25 | 25 | throw new Exception('Cannot include autoload. Did you run install dependencies using composer?'); |
26 | 26 | } |
27 | 27 |
@@ -166,6 +166,9 @@ discard block |
||
166 | 166 | return $event; |
167 | 167 | } |
168 | 168 | |
169 | + /** |
|
170 | + * @param string $paramName |
|
171 | + */ |
|
169 | 172 | private function parseParamForBoard($paramName, $subjectParams, $params) { |
170 | 173 | if (array_key_exists($paramName, $subjectParams)) { |
171 | 174 | $params[$paramName] = [ |
@@ -177,6 +180,10 @@ discard block |
||
177 | 180 | } |
178 | 181 | return $params; |
179 | 182 | } |
183 | + |
|
184 | + /** |
|
185 | + * @param string $paramName |
|
186 | + */ |
|
180 | 187 | private function parseParamForStack($paramName, $subjectParams, $params) { |
181 | 188 | if (array_key_exists($paramName, $subjectParams)) { |
182 | 189 | $params[$paramName] = [ |
@@ -188,6 +195,9 @@ discard block |
||
188 | 195 | return $params; |
189 | 196 | } |
190 | 197 | |
198 | + /** |
|
199 | + * @param string $paramName |
|
200 | + */ |
|
191 | 201 | private function parseParamForAttachment($paramName, $subjectParams, $params) { |
192 | 202 | if (array_key_exists($paramName, $subjectParams)) { |
193 | 203 | $params[$paramName] = [ |
@@ -226,6 +236,7 @@ discard block |
||
226 | 236 | * |
227 | 237 | * @param $subjectParams |
228 | 238 | * @param $params |
239 | + * @param IEvent $event |
|
229 | 240 | * @return mixed |
230 | 241 | */ |
231 | 242 | private function parseParamForChanges($subjectParams, $params, $event) { |
@@ -252,6 +263,9 @@ discard block |
||
252 | 263 | return $params; |
253 | 264 | } |
254 | 265 | |
266 | + /** |
|
267 | + * @param string $endpoint |
|
268 | + */ |
|
255 | 269 | public function deckUrl($endpoint) { |
256 | 270 | return $this->urlGenerator->linkToRoute('deck.page.index') . '#!' . $endpoint; |
257 | 271 | } |
@@ -241,7 +241,7 @@ |
||
241 | 241 | if (array_key_exists('comment', $subjectParams)) { |
242 | 242 | /** @var IComment $comment */ |
243 | 243 | try { |
244 | - $comment = $this->commentsManager->get((int)$subjectParams['comment']); |
|
244 | + $comment = $this->commentsManager->get((int) $subjectParams['comment']); |
|
245 | 245 | $event->setParsedMessage($comment->getMessage()); |
246 | 246 | } catch (NotFoundException $e) { |
247 | 247 | } |
@@ -45,6 +45,9 @@ |
||
45 | 45 | return $this->findEntity($sql, [$id]); |
46 | 46 | } |
47 | 47 | |
48 | + /** |
|
49 | + * @param string $sql |
|
50 | + */ |
|
48 | 51 | protected function execute($sql, array $params = [], $limit = null, $offset = null) { |
49 | 52 | return parent::execute($sql, $params, $limit, $offset); |
50 | 53 | } |
@@ -66,6 +66,9 @@ discard block |
||
66 | 66 | return $result; |
67 | 67 | } |
68 | 68 | |
69 | + /** |
|
70 | + * @param integer $labelId |
|
71 | + */ |
|
69 | 72 | public function deleteLabelAssignments($labelId) { |
70 | 73 | $sql = 'DELETE FROM `*PREFIX*deck_assigned_labels` WHERE label_id = ?'; |
71 | 74 | $stmt = $this->db->prepare($sql); |
@@ -73,6 +76,9 @@ discard block |
||
73 | 76 | $stmt->execute(); |
74 | 77 | } |
75 | 78 | |
79 | + /** |
|
80 | + * @param integer $cardId |
|
81 | + */ |
|
76 | 82 | public function deleteLabelAssignmentsForCard($cardId) { |
77 | 83 | $sql = 'DELETE FROM `*PREFIX*deck_assigned_labels` WHERE card_id = ?'; |
78 | 84 | $stmt = $this->db->prepare($sql); |