Skip to content

Commit d7099ed

Browse files
committed
Deprecate configToken
1 parent 6aff919 commit d7099ed

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

src/Parameters/CreateMeetingParameters.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,11 @@ class CreateMeetingParameters extends MetaParameters
163163
*/
164164
protected $webVoice;
165165

166+
/**
167+
* @var string
168+
*/
169+
protected $configToken;
170+
166171
/**
167172
* @var int
168173
*/
@@ -476,6 +481,28 @@ public function setGuestPolicyAlwaysAccept(): self
476481
return $this;
477482
}
478483

484+
/**
485+
* @deprecated old flash client parameter, not used anymore
486+
* @return string
487+
*/
488+
public function getConfigToken(): ?string
489+
{
490+
return $this->configToken;
491+
}
492+
493+
/**
494+
* @deprecated old flash client parameter, not used anymore
495+
* @param string $configToken
496+
*
497+
* @return JoinMeetingParameters
498+
*/
499+
public function setConfigToken(string $configToken): self
500+
{
501+
$this->configToken = $configToken;
502+
503+
return $this;
504+
}
505+
479506
public function addPresentation(string $nameOrUrl, ?string $content = null, ?string $filename = null): self
480507
{
481508
if (!$filename) {

0 commit comments

Comments
 (0)