| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 56 | public function __construct(string $xml) |
||
| 57 | { |
||
| 58 | parent::__construct($xml); |
||
| 59 | $this->subdomain = (string) $this->getXml()->xpath('//subdomain')[0]; |
||
| 60 | $this->plan = (string) $this->getXml()->xpath('//plan')[0]; |
||
| 61 | $this->ownerId = (int) $this->getXml()->xpath('//owner-id')[0]; |
||
| 62 | $this->peopleCount = (int) $this->getXml()->xpath('//people-count')[0]; |
||
| 63 | $this->storage = (int) $this->getXml()->xpath('//storage')[0]; |
||
| 64 | $this->colorTheme = (string) $this->getXml()->xpath('//color_theme')[0]; |
||
| 65 | } |
||
| 123 |