Completed
Push — master ( 611fa2...6a634a )
by Sander
07:38
created
lib/Service/OwnNoteService.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -128,6 +128,10 @@
 block discarded – undo
128 128
 		return $this->noteMapper->updateNote($note);
129 129
 	}
130 130
 
131
+	/**
132
+	 * @param integer $id
133
+	 * @param string $in_newname
134
+	 */
131 135
 	public function renameNote($FOLDER, $id, $in_newname, $in_newgroup, $uid = null) {
132 136
 		$newname = str_replace("\\", "-", str_replace("/", "-", $in_newname));
133 137
 		$newgroup = str_replace("\\", "-", str_replace("/", "-", $in_newgroup));
Please login to merge, or discard this patch.
lib/Db/OwnNoteMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
 
72 72
 	/**
73 73
 	 * @param $userId
74
-	 * @param int|bool $deleted
74
+	 * @param integer $deleted
75 75
 	 * @param string|bool $group
76 76
 	 * @return OwnNote[] if not found
77 77
 	 */
Please login to merge, or discard this patch.