Update NodaGroup

This commit is contained in:
Joshua Ramon Enslin 2025-03-13 00:30:33 +01:00
parent 5054d3c62f
commit bb2b1c2c32
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -101,7 +101,11 @@ final class NodaGroup {
/**
* Updates a group.
*
* @retun void
* @param integer $group_id ID of the group to update.
* @param string $name Name of the group.
* @param string $comment Optional: Comment for the group.
*
* @return void
*/
public function update(int $group_id, string $name, string $comment = ''):void {
@ -123,7 +127,9 @@ final class NodaGroup {
/**
* Deletes a group.
*
* @retun void
* @param integer $group_id ID of the group to delete.
*
* @return void
*/
public function delete(int $group_id):void {