Skip to content

Commit 7e55854

Browse files
Deprecate clientURL (#194)
* Deprecate clientURL * Fix cs --------- Co-authored-by: Felix Jacobi <felix@jacobi-hamburg.net>
1 parent e62790a commit 7e55854

1 file changed

Lines changed: 20 additions & 2 deletions

File tree

src/Parameters/JoinMeetingParameters.php

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@
4242
* @method $this setRedirect(bool $redirect)
4343
* @method string getErrorRedirectUrl()
4444
* @method $this setErrorRedirectUrl(string $errorRedirectUrl)
45-
* @method string getClientURL()
46-
* @method $this setClientURL(string $clientURL)
4745
* @method bool|null isGuest()
4846
* @method $this setGuest(bool $guest)
4947
* @method string getRole()
@@ -190,4 +188,24 @@ public function setConfigToken(string $configToken): self
190188

191189
return $this;
192190
}
191+
192+
/**
193+
* @deprecated and will be removed in 6.0. Old BigBlueButton flash client parameter.
194+
*/
195+
public function getClientURL(): ?string
196+
{
197+
return $this->clientURL;
198+
}
199+
200+
/**
201+
* @deprecated and will be removed in 6.0. Old BigBlueButton flash client parameter.
202+
*
203+
* @return $this
204+
*/
205+
public function setClientURL(string $clientURL): self
206+
{
207+
$this->clientURL = $clientURL;
208+
209+
return $this;
210+
}
193211
}

0 commit comments

Comments
 (0)