Skip to content

Commit 5912586

Browse files
committed
GetMeetingInfoParameters do no more require password parameter.
1 parent 04b7f5a commit 5912586

File tree

1 file changed

+1
-29
lines changed

1 file changed

+1
-29
lines changed

src/Parameters/GetMeetingInfoParameters.php

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,13 @@ class GetMeetingInfoParameters extends BaseParameters
3030
*/
3131
private $meetingId;
3232

33-
/**
34-
* @var string
35-
*/
36-
private $password;
37-
3833
/**
3934
* GetMeetingInfoParameters constructor.
4035
*
4136
* @param $meetingId
42-
* @param $password
4337
*/
44-
public function __construct($meetingId, $password)
38+
public function __construct($meetingId)
4539
{
46-
$this->password = $password;
4740
$this->meetingId = $meetingId;
4841
}
4942

@@ -67,26 +60,6 @@ public function setMeetingId($meetingId)
6760
return $this;
6861
}
6962

70-
/**
71-
* @return string
72-
*/
73-
public function getPassword()
74-
{
75-
return $this->password;
76-
}
77-
78-
/**
79-
* @param string $password
80-
*
81-
* @return GetMeetingInfoParameters
82-
*/
83-
public function setPassword($password)
84-
{
85-
$this->password = $password;
86-
87-
return $this;
88-
}
89-
9063
/**
9164
* @return string
9265
*/
@@ -95,7 +68,6 @@ public function getHTTPQuery()
9568
return $this->buildHTTPQuery(
9669
[
9770
'meetingID' => $this->meetingId,
98-
'password' => $this->password,
9971
]
10072
);
10173
}

0 commit comments

Comments
 (0)