Skip to content

Commit

Permalink
Fix property name typo in GetMeetingInfoResponse.
Browse files Browse the repository at this point in the history
  • Loading branch information
GhaziTriki committed May 27, 2016
1 parent ed2c1b2 commit 5b72615
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Responses/GetMeetingInfoResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
use BigBlueButton\Core\Attendee;
use BigBlueButton\Core\MeetingInfo;

/**
* Class GetMeetingInfoResponse
* @package BigBlueButton\Responses
*/
class GetMeetingInfoResponse extends BaseResponse
{
/**
Expand Down Expand Up @@ -65,7 +69,7 @@ public function getAttendees()
if (!is_null($this->attendees)) {
return $this->attendees;
} else {
$this->attendess = [];
$this->attendees = [];
foreach ($this->rawXml->attendees->attendee as $attendeeXml) {
$this->attendees[] = new Attendee($attendeeXml);
}
Expand Down

0 comments on commit 5b72615

Please sign in to comment.