Completed
Pull Request — master (#58)
by Julius
02:52
created
lib/Service/BoardService.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -27,12 +27,9 @@
 block discarded – undo
27 27
 use OCA\Deck\Db\AclMapper;
28 28
 use OCA\Deck\Db\Group;
29 29
 use OCA\Deck\Db\Label;
30
-
31
-
32 30
 use OCA\Deck\Db\User;
33 31
 use OCP\IGroupManager;
34 32
 use OCP\IL10N;
35
-
36 33
 use OCA\Deck\Db\Board;
37 34
 use OCA\Deck\Db\BoardMapper;
38 35
 use OCA\Deck\Db\LabelMapper;
Please login to merge, or discard this patch.
lib/Db/RelationalEntity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
 	/**
32 32
 	 * Mark a property as relation so it will not get updated using Mapper::update
33
-	 * @param $property string Name of the property
33
+	 * @param string $property string Name of the property
34 34
 	 */
35 35
 	public function addRelation($property) {
36 36
 		if (!in_array($property, $this->_relations)) {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
 	/**
42 42
 	 * Mark a property as resolvable via resolveRelation()
43
-	 * @param $property string Name of the property
43
+	 * @param string $property string Name of the property
44 44
 	 */
45 45
 	public function addResolvable($property) {
46 46
 		$this->_resolvedProperties[$property] = null;
Please login to merge, or discard this patch.