Skip to content

Commit 87e761a

Browse files
committed
Fix methods in wrong class
1 parent addebc3 commit 87e761a

2 files changed

Lines changed: 20 additions & 27 deletions

File tree

src/Parameters/CreateMeetingParameters.php

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

166-
/**
167-
* @var string
168-
*/
169-
protected $configToken;
170-
171166
/**
172167
* @var int
173168
*/
@@ -486,26 +481,6 @@ public function setGuestPolicyAlwaysAccept(): self
486481
return $this;
487482
}
488483

489-
/**
490-
* @deprecated old flash client parameter, not used anymore
491-
*/
492-
public function getConfigToken(): ?string
493-
{
494-
return $this->configToken;
495-
}
496-
497-
/**
498-
* @deprecated old flash client parameter, not used anymore
499-
*
500-
* @return JoinMeetingParameters
501-
*/
502-
public function setConfigToken(string $configToken): self
503-
{
504-
$this->configToken = $configToken;
505-
506-
return $this;
507-
}
508-
509484
public function addPresentation(string $nameOrUrl, string $content = null, string $filename = null): self
510485
{
511486
if (!$filename) {

src/Parameters/JoinMeetingParameters.php

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434
* @method $this setUserID(string $userID)
3535
* @method string getWebVoiceConf()
3636
* @method $this setWebVoiceConf(string $webVoiceConf)
37-
* @method string getConfigToken()
38-
* @method $this setConfigToken(string $configToken)
3937
* @method string getDefaultLayout()
4038
* @method $this setDefaultLayout(string $defaultLayout)
4139
* @method string getAvatarURL()
@@ -137,4 +135,24 @@ public function __construct(string $meetingID, string $fullName, string $passwor
137135
$this->fullName = $fullName;
138136
$this->password = $password;
139137
}
138+
139+
/**
140+
* @deprecated old flash client parameter, not used anymore
141+
*/
142+
public function getConfigToken(): ?string
143+
{
144+
return $this->configToken;
145+
}
146+
147+
/**
148+
* @deprecated old flash client parameter, not used anymore
149+
*
150+
* @return JoinMeetingParameters
151+
*/
152+
public function setConfigToken(string $configToken): self
153+
{
154+
$this->configToken = $configToken;
155+
156+
return $this;
157+
}
140158
}

0 commit comments

Comments
 (0)