Add getRoomId to Room class

This commit is contained in:
Benedikt Ziemons 2021-09-19 13:10:19 +02:00
commit f82d1770ce
No known key found for this signature in database
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;
}
}
}