Completed
Push — master ( ba6e98...850cec )
by Morris
02:23
created
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.
lib/Db/BoardMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 	 * @param $id
57 57
 	 * @param bool $withLabels
58 58
 	 * @param bool $withAcl
59
-	 * @return \OCP\AppFramework\Db\Entity if not found
59
+	 * @return Board if not found
60 60
 	 */
61 61
 	public function find($id, $withLabels = false, $withAcl = false) {
62 62
 		$sql = 'SELECT id, title, owner, color, archived, deleted_at FROM `*PREFIX*deck_boards` ' .
Please login to merge, or discard this patch.