File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,11 @@ class Meeting
151151 */
152152 private $ metas ;
153153
154+ /**
155+ * @var bool
156+ */
157+ private $ isBreakout ;
158+
154159 /**
155160 * Meeting constructor.
156161 * @param $xml \SimpleXMLElement
@@ -180,6 +185,7 @@ public function __construct($xml)
180185 $ this ->endTime = (float ) $ xml ->endTime ;
181186 $ this ->maxUsers = (int ) $ xml ->maxUsers ->__toString ();
182187 $ this ->moderatorCount = (int ) $ xml ->moderatorCount ->__toString ();
188+ $ this ->isBreakout = $ xml ->isBreakout ->__toString () === 'true ' ;
183189 }
184190
185191 /**
@@ -417,4 +423,9 @@ public function getMetas()
417423
418424 return $ this ->metas ;
419425 }
426+
427+ public function isBreakout (): bool
428+ {
429+ return $ this ->isBreakout ;
430+ }
420431}
You can’t perform that action at this time.
0 commit comments