Merge branch 'feature/get-room-id' into feature/guzzle7-update

This commit is contained in:
Ben 2021-09-19 13:16:14 +02:00
commit 269c4288d4
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;
}
}
}