Skip to content

Commit 19dede1

Browse files
authored
Deprecate password methods (#174)
1 parent 38f6554 commit 19dede1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/Responses/CreateMeetingResponse.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* BigBlueButton open source conferencing system - https://www.bigbluebutton.org/.
45
*
@@ -42,11 +43,17 @@ public function getParentMeetingId(): string
4243
return $this->rawXml->parentMeetingID->__toString();
4344
}
4445

46+
/**
47+
* @deprecated and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter in api requests.
48+
*/
4549
public function getAttendeePassword(): string
4650
{
4751
return $this->rawXml->attendeePW->__toString();
4852
}
4953

54+
/**
55+
* @deprecated and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter in api requests.
56+
*/
5057
public function getModeratorPassword(): string
5158
{
5259
return $this->rawXml->moderatorPW->__toString();

0 commit comments

Comments
 (0)