You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@trigger_error(sprintf('Passing a attendee password to "%s::setAttendeePW()" is deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the attendee password to create a meeting.', self::class), \E_USER_DEPRECATED);
562
+
563
+
$this->attendeePW = $attendeePW;
564
+
565
+
return$this;
566
+
}
567
+
568
+
/**
569
+
* @deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter.
570
+
*/
571
+
publicfunctiongetModeratorPW(): string
572
+
{
573
+
if (null === $this->moderatorPW) {
574
+
thrownew \RuntimeException(sprintf('Moderator password was not passed to "%s".', self::class));
575
+
}
576
+
577
+
return$this->moderatorPW;
578
+
}
579
+
580
+
/**
581
+
* @deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter.
@trigger_error(sprintf('Passing a moderator password to "%s::setModeratorPW()" is deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the moderator password to create a meeting.', self::class), \E_USER_DEPRECATED);
@trigger_error(sprintf('Passing $password parameter to constructor of "%s" is deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter to end a meeting.', self::class), \E_USER_DEPRECATED);
44
+
}
45
+
44
46
$this->password = $password;
45
47
$this->meetingID = $meetingID;
46
48
}
49
+
50
+
/**
51
+
* @deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter.
52
+
*/
53
+
publicfunctiongetPassword(): string
54
+
{
55
+
if (null === $this->password) {
56
+
thrownew \RuntimeException(sprintf('Password was not passed to "%s".', self::class));
57
+
}
58
+
59
+
return$this->password;
60
+
}
61
+
62
+
/**
63
+
* @deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter.
@trigger_error(sprintf('Passing $password parameter to constructor of "%s" is deprecated since 5.1 and will be removed in 6.0. Use "%s::setRole()" to set the designated role for the joining user instead.', self::class, self::class), \E_USER_DEPRECATED);
129
+
}
130
+
134
131
$this->meetingID = $meetingID;
135
132
$this->fullName = $fullName;
136
133
$this->password = $password;
137
134
}
138
135
139
136
/**
140
-
* @deprecated old flash client parameter, not used anymore
137
+
* @deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter.
138
+
*/
139
+
publicfunctiongetPassword(): string
140
+
{
141
+
if (null === $this->password) {
142
+
thrownew \RuntimeException(sprintf('Password was not passed to "%s".', self::class));
143
+
}
144
+
145
+
return$this->password;
146
+
}
147
+
148
+
/**
149
+
* @deprecated since 5.1 and will be removed in 6.0. Recent BigBlueButton versions does not require the password parameter.
150
+
*
151
+
* @return $this
152
+
*/
153
+
publicfunctionsetPassword(string$password): self
154
+
{
155
+
$this->password = $password;
156
+
157
+
return$this;
158
+
}
159
+
160
+
/**
161
+
* @deprecated since 5.1 and will be removed in 6.0. Old BigBlueButton flash client parameter.
141
162
*/
142
163
publicfunctiongetConfigToken(): ?string
143
164
{
144
165
return$this->configToken;
145
166
}
146
167
147
168
/**
148
-
* @deprecated old flash client parameter, not used anymore
169
+
* @deprecated since 5.1 and will be removed in 6.0. Old BigBlueButton flash client parameter.
0 commit comments