@@ -123,8 +123,8 @@ protected function get_user_oauth_client($oauthloginreturnurl) {
123123 /**
124124 * A method, which attempts to rename a given, privately shared, folder.
125125 *
126- * @param $pathtofolder string path, which leads to the folder that needs to be renamed.
127- * @param $newname string the name which needs to be set instead of the old.
126+ * @param string $pathtofolder path, which leads to the folder that needs to be renamed.
127+ * @param string $newname the name which needs to be set instead of the old.
128128 * @return array contains status (true means success, false failure) and content (generated
129129 * link or error message) of the result.
130130 */
@@ -196,10 +196,10 @@ public function check_login(): bool {
196196 * database table. If the specific record already exists, it gets updated in the concerning field. Otherwise,
197197 * a new record is inserted into the table.
198198 *
199- * @param $cmid int ID of the course module. Needed to specify the concrete activity instance.
200- * @param $groupid int the group ID to specify one particular folder.
201- * @param $userid string ID of the user, which the value needs to be set for.
202- * @param $value string the specific value, which needs to be set or updated.
199+ * @param int $cmid ID of the course module. Needed to specify the concrete activity instance.
200+ * @param int $groupid the group ID to specify one particular folder.
201+ * @param string $userid ID of the user, which the value needs to be set for.
202+ * @param string $value the specific value, which needs to be set or updated.
203203 */
204204 public function store_link ($ cmid , $ groupid , $ userid , $ value ) {
205205 // TODO use persistent API instead.
@@ -231,9 +231,9 @@ public function store_link($cmid, $groupid, $userid, $value) {
231231 * database table. It is used to get a stored folder name or link for a specific user and course
232232 * module.
233233 *
234- * @param $cmid int the course module ID. Needed to specify the concrete activity instance.
235- * @param $groupid int the group ID to specify one particular folder.
236- * @param $userid string ID of the user, which the value needs to be gotten for.
234+ * @param int $cmid the course module ID. Needed to specify the concrete activity instance.
235+ * @param int $groupid the group ID to specify one particular folder.
236+ * @param string $userid ID of the user, which the value needs to be gotten for.
237237 * @return object|false
238238 */
239239 public function get_link ($ cmid , $ groupid , $ userid ) {
0 commit comments