File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -377,11 +377,12 @@ public function getAttendees()
377377 * Moderators of Meeting - Subset of Attendees
378378 * @return Attendee[]
379379 */
380- public function getModerators () {
380+ public function getModerators ()
381+ {
381382 $ attendees = $ this ->getAttendees ();
382383
383384 $ moderators = array_filter ($ attendees , function ($ attendee ) {
384- return ( $ attendee ->getRole () === " MODERATOR " ) ;
385+ return $ attendee ->getRole () === ' MODERATOR ' ;
385386 });
386387
387388 return array_values ($ moderators );
@@ -391,11 +392,12 @@ public function getModerators() {
391392 * Viewers of Meeting - Subset of Attendees
392393 * @return Attendee[]
393394 */
394- public function getViewers () {
395+ public function getViewers ()
396+ {
395397 $ attendees = $ this ->getAttendees ();
396398
397399 $ viewers = array_filter ($ attendees , function ($ attendee ) {
398- return ( $ attendee ->getRole () === " VIEWER " ) ;
400+ return $ attendee ->getRole () === ' VIEWER ' ;
399401 });
400402
401403 return array_values ($ viewers );
You can’t perform that action at this time.
0 commit comments