/home/techb158/ileadtechnology.com/vendor/bigbluebutton/bigbluebutton-api-php/src/Core
NameSizeModeActions
ApiMethod.php17080644editdlrm
Attendee.php34190644editdlrm
Format.php23430644editdlrm
GuestPolicy.php10560644editdlrm
Hook.php24100644editdlrm
Image.php16400644editdlrm
Meeting.php86830644editdlrm
MeetingLayout.php11320644editdlrm
Record.php41780644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/bigbluebutton/bigbluebutton-api-php/src/Core/Image.php (1640B)
. */ namespace BigBlueButton\Core; /** * Class Record. */ class Image { private $alt; private $height; private $width; private $url; /** * Record constructor. * * @param $xml \SimpleXMLElement */ public function __construct($xml) { $this->alt = $xml['alt']->__toString(); $this->height = (int) $xml['height']; $this->width = (int) $xml['width']; $this->url = $xml->__toString(); } public function getAlt(): string { return $this->alt; } public function getHeight(): int { return $this->height; } public function getWidth(): int { return $this->width; } public function getUrl(): string { return $this->url; } }