Passed
Push — master ( eb262a...4a5699 )
by Morris
02:44
created
lib/Db/CardMapper.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 
93 93
 	/**
94 94
 	 * @param $id
95
-	 * @return RelationalEntity if not found
95
+	 * @return Entity if not found
96 96
 	 * @throws \OCP\AppFramework\Db\MultipleObjectsReturnedException
97 97
 	 * @throws \OCP\AppFramework\Db\DoesNotExistException
98 98
 	 */
@@ -136,6 +136,9 @@  discard block
 block discarded – undo
136 136
 		return parent::delete($entity);
137 137
 	}
138 138
 
139
+	/**
140
+	 * @param integer $stackId
141
+	 */
139 142
 	public function deleteByStack($stackId) {
140 143
 		$cards = $this->findAllByStack($stackId);
141 144
 		foreach ($cards as $card) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
 		$userManager = $this->userManager;
179 179
 		$card->resolveRelation('owner', function($owner) use (&$userManager) {
180 180
 			$user = $userManager->get($owner);
181
-			if($user !== null) {
181
+			if ($user !== null) {
182 182
 				return new User($user);
183 183
 			}
184 184
 			return null;
Please login to merge, or discard this patch.
lib/Db/RelationalEntity.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
 	/**
34 34
 	 * Mark a property as relation so it will not get updated using Mapper::update
35
-	 * @param $property string Name of the property
35
+	 * @param string $property string Name of the property
36 36
 	 */
37 37
 	public function addRelation($property) {
38 38
 		if (!in_array($property, $this->_relations, true)) {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 	/**
44 44
 	 * Mark a property as resolvable via resolveRelation()
45
-	 * @param $property string Name of the property
45
+	 * @param string $property string Name of the property
46 46
 	 */
47 47
 	public function addResolvable($property) {
48 48
 		$this->_resolvedProperties[$property] = null;
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 			}
78 78
 		}
79 79
 		foreach ($this->_resolvedProperties as $property => $value) {
80
-			if($value !== null) {
80
+			if ($value !== null) {
81 81
 				$json[$property] = $value;
82 82
 			}
83 83
 		}
@@ -107,29 +107,29 @@  discard block
 block discarded – undo
107 107
 	 */
108 108
 	public function resolveRelation($property, $resolver) {
109 109
 		$result = null;
110
-		if($property !== null && $this->$property !== null) {
110
+		if ($property !== null && $this->$property !== null) {
111 111
 			$result = $resolver($this->$property);
112 112
 		}
113 113
 
114
-		if($result instanceof RelationalObject || $result === null) {
114
+		if ($result instanceof RelationalObject || $result === null) {
115 115
 			$this->_resolvedProperties[$property] = $result;
116 116
 		} else {
117 117
 			throw new \Exception('resolver must return an instance of RelationalObject');
118 118
 		}
119 119
 	}
120 120
 
121
-	public function __call($methodName, $args){
122
-		$attr = lcfirst( substr($methodName, 7) );
123
-		if(array_key_exists($attr, $this->_resolvedProperties) && strpos($methodName, 'resolve') === 0) {
124
-			if($this->_resolvedProperties[$attr] !== null) {
121
+	public function __call($methodName, $args) {
122
+		$attr = lcfirst(substr($methodName, 7));
123
+		if (array_key_exists($attr, $this->_resolvedProperties) && strpos($methodName, 'resolve') === 0) {
124
+			if ($this->_resolvedProperties[$attr] !== null) {
125 125
 				return $this->_resolvedProperties[$attr];
126 126
 			}
127 127
 			return $this->getter($attr);
128 128
 		}
129 129
 
130
-		$attr = lcfirst( substr($methodName, 3) );
131
-		if(array_key_exists($attr, $this->_resolvedProperties) && strpos($methodName, 'set') === 0) {
132
-			if(!is_scalar($args[0])) {
130
+		$attr = lcfirst(substr($methodName, 3));
131
+		if (array_key_exists($attr, $this->_resolvedProperties) && strpos($methodName, 'set') === 0) {
132
+			if (!is_scalar($args[0])) {
133 133
 				$args[0] = $args[0]['primaryKey'];
134 134
 			}
135 135
 			parent::setter($attr, $args);
Please login to merge, or discard this patch.
lib/Notification/NotificationHelper.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	 * Send notifications that a board was shared with a user/group
99 99
 	 *
100 100
 	 * @param $boardId
101
-	 * @param $acl
101
+	 * @param Acl $acl
102 102
 	 * @throws \InvalidArgumentException
103 103
 	 */
104 104
 	public function sendBoardShared($boardId, $acl) {
@@ -128,6 +128,9 @@  discard block
 block discarded – undo
128 128
 		return $this->boards[$boardId];
129 129
 	}
130 130
 
131
+	/**
132
+	 * @param Board $board
133
+	 */
131 134
 	private function generateBoardShared($board, $userId) {
132 135
 		$notification = $this->notificationManager->createNotification();
133 136
 		$notification
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 			$notification = $this->notificationManager->createNotification();
84 84
 			$notification
85 85
 				->setApp('deck')
86
-				->setUser((string)$user->getUID())
86
+				->setUser((string) $user->getUID())
87 87
 				->setObject('card', $card->getId())
88 88
 				->setSubject('card-overdue', [
89 89
 					$card->getTitle(), $board->getTitle()
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 		$notification = $this->notificationManager->createNotification();
133 133
 		$notification
134 134
 			->setApp('deck')
135
-			->setUser((string)$userId)
135
+			->setUser((string) $userId)
136 136
 			->setDateTime(new DateTime())
137 137
 			->setObject('board', $board->getId())
138 138
 			->setSubject('board-shared', [$board->getTitle(), $this->currentUser]);
Please login to merge, or discard this patch.
lib/Db/RelationalObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 	 * @throws \Exception
53 53
 	 */
54 54
 	public function getObjectSerialization() {
55
-		if($this->object instanceof \JsonSerializable) {
55
+		if ($this->object instanceof \JsonSerializable) {
56 56
 			$this->object->jsonSerialize();
57 57
 		} else {
58 58
 			throw new \Exception('jsonSerialize is not implemented on ' . get_class($this));
Please login to merge, or discard this patch.
lib/Db/Card.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	}
65 65
 
66 66
 	public function getDuedate($isoFormat = false) {
67
-		if($this->duedate === null) {
67
+		if ($this->duedate === null) {
68 68
 			return null;
69 69
 		}
70 70
 		$dt = new DateTime($this->duedate);
@@ -80,16 +80,16 @@  discard block
 block discarded – undo
80 80
 		$due = strtotime($this->duedate);
81 81
 
82 82
 		$today = new DateTime();
83
-		$today->setTime( 0, 0);
83
+		$today->setTime(0, 0);
84 84
 
85 85
 		$match_date = new DateTime($this->duedate);
86 86
 
87
-		$match_date->setTime( 0, 0);
87
+		$match_date->setTime(0, 0);
88 88
 
89
-		$diff = $today->diff( $match_date );
90
-		$diffDays = (integer)$diff->format('%R%a'); // Extract days count in interval
89
+		$diff = $today->diff($match_date);
90
+		$diffDays = (integer) $diff->format('%R%a'); // Extract days count in interval
91 91
 
92
-		if($due !== false) {
92
+		if ($due !== false) {
93 93
 			if ($diffDays === 1) {
94 94
 				$json['overdue'] = self::DUEDATE_NEXT;
95 95
 			}
Please login to merge, or discard this patch.
lib/Db/AssignedUsersMapper.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
 	 * Check if user exists before assigning it to a card
64 64
 	 *
65 65
 	 * @param Entity $entity
66
-	 * @return null|Entity
66
+	 * @return AssignedUsers|null
67 67
 	 */
68 68
 	public function insert(Entity $entity) {
69 69
 		$user = $this->userManager->get($entity->getParticipant());
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
 		$userManager = $this->userManager;
81 81
 		$assignment->resolveRelation('participant', function() use (&$userManager, &$assignment) {
82 82
 			$user = $userManager->get($assignment->getParticipant());
83
-			if($user !== null) {
83
+			if ($user !== null) {
84 84
 				return new User($user);
85 85
 			}
86 86
 			return null;
Please login to merge, or discard this patch.
templates/main.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 Util::addScript('deck', 'vendor/markdown-it-link-target/dist/markdown-it-link-target.min');
40 40
 Util::addScript('deck', 'vendor/jquery-timepicker/jquery.ui.timepicker');
41 41
 
42
-if(!\OC::$server->getConfig()->getSystemValue('debug', false)) {
42
+if (!\OC::$server->getConfig()->getSystemValue('debug', false)) {
43 43
 	Util::addScript('deck', 'public/app');
44 44
 } else {
45 45
 	// Load seperate JS files when debug mode is enabled
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
 		'filters' => ['boardFilterAcl', 'cardFilter', 'cardSearchFilter', 'iconWhiteFilter', 'lightenColorFilter', 'orderObjectBy', 'dateFilters', 'textColorFilter', 'withoutAssignedUsers'],
51 51
 		'service' => ['ApiService', 'BoardService', 'CardService', 'LabelService', 'StackService', 'StatusService'],
52 52
 	];
53
-	foreach($js as $folder=>$files) {
53
+	foreach ($js as $folder=>$files) {
54 54
 		foreach ($files as $file) {
55
-			Util::addScript('deck', $folder.'/'.$file);
55
+			Util::addScript('deck', $folder . '/' . $file);
56 56
 		}
57 57
 	}
58 58
 }
Please login to merge, or discard this patch.
lib/Db/BoardMapper.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 
141 141
 	public function findToDelete() {
142 142
 		// add buffer of 5 min
143
-		$timeLimit = time()-(60*5);
143
+		$timeLimit = time() - (60 * 5);
144 144
 		$sql = 'SELECT id, title, owner, color, archived, deleted_at FROM `*PREFIX*deck_boards` ' .
145 145
 			'WHERE `deleted_at` > 0 AND `deleted_at` < ?';
146 146
 		return $this->findEntities($sql, [$timeLimit]);
@@ -181,17 +181,17 @@  discard block
 block discarded – undo
181 181
 		$userManager = $this->userManager;
182 182
 		$groupManager = $this->groupManager;
183 183
 		$acl->resolveRelation('participant', function($participant) use (&$acl, &$userManager, &$groupManager) {
184
-			if($acl->getType() === Acl::PERMISSION_TYPE_USER) {
184
+			if ($acl->getType() === Acl::PERMISSION_TYPE_USER) {
185 185
 				$user = $userManager->get($participant);
186
-				if($user !== null) {
186
+				if ($user !== null) {
187 187
 					return new User($user);
188 188
 				}
189 189
 				\OC::$server->getLogger()->debug('User ' . $acl->getId() . ' not found when mapping acl ' . $acl->getParticipant());
190 190
 				return null;
191 191
 			}
192
-			if($acl->getType() === Acl::PERMISSION_TYPE_GROUP) {
192
+			if ($acl->getType() === Acl::PERMISSION_TYPE_GROUP) {
193 193
 				$group = $groupManager->get($participant);
194
-				if($group !== null) {
194
+				if ($group !== null) {
195 195
 					return new Group($group);
196 196
 				}
197 197
 				\OC::$server->getLogger()->debug('Group ' . $acl->getId() . ' not found when mapping acl ' . $acl->getParticipant());
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 		$userManager = $this->userManager;
209 209
 		$board->resolveRelation('owner', function($owner) use (&$userManager) {
210 210
 			$user = $userManager->get($owner);
211
-			if($user !== null) {
211
+			if ($user !== null) {
212 212
 				return new User($user);
213 213
 			}
214 214
 			return null;
Please login to merge, or discard this patch.