Add getRoomId to Room class

This commit is contained in:
Ben 2021-09-19 13:10:19 +02:00
parent 70f6273e0e
commit f82d1770ce
Signed by: ben
GPG key ID: 0F54A7ED232D3319

View file

@ -891,5 +891,12 @@ class Room {
return $this->client->api();
}
/**
* @return string the matrix roomId of this room.
*/
public function getRoomId(): string
{
return $this->roomId;
}
}
}