Completed
Pull Request — master (#58)
by Julius
02:52
created
lib/Db/BoardMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 	 * @param $id
45 45
 	 * @param bool $withLabels
46 46
 	 * @param bool $withAcl
47
-	 * @return \OCP\AppFramework\Db\Entity if not found
47
+	 * @return Board if not found
48 48
 	 */
49 49
 	public function find($id, $withLabels = false, $withAcl = false) {
50 50
 		$sql = 'SELECT id, title, owner, color, archived FROM `*PREFIX*deck_boards` ' .
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.