File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -383,7 +383,7 @@ public function getAttendees()
383383 * Moderators of Meeting - Subset of Attendees
384384 * @return Attendee[]
385385 */
386- public function getModerators ()
386+ public function getModerators (): array
387387 {
388388 $ attendees = $ this ->getAttendees ();
389389
@@ -398,7 +398,7 @@ public function getModerators()
398398 * Viewers of Meeting - Subset of Attendees
399399 * @return Attendee[]
400400 */
401- public function getViewers ()
401+ public function getViewers (): array
402402 {
403403 $ attendees = $ this ->getAttendees ();
404404
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ public function testMeetingAttendeeContent()
8888 $ this ->assertEquals ('a:focus{color:#0181eb} ' , $ customData ['customStyle ' ]);
8989 }
9090
91- public function testMeetingModerators ()
91+ public function testMeetingModerators (): void
9292 {
9393 $ moderators = $ this ->meetingInfo ->getMeeting ()->getModerators ();
9494
@@ -103,7 +103,7 @@ public function testMeetingModerators()
103103 $ this ->assertEquals ('MODERATOR ' , $ secondModerator ->getRole ());
104104 }
105105
106- public function testMeetingViewers ()
106+ public function testMeetingViewers (): void
107107 {
108108 $ viewers = $ this ->meetingInfo ->getMeeting ()->getViewers ();
109109
You can’t perform that action at this time.
0 commit comments