| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class StyleSheet |
||
| 24 | { |
||
| 25 | /** @var SimpleXMLElement */ |
||
| 26 | private $node; |
||
| 27 | |||
| 28 | 167 | public function __construct($data, $options = 0, $data_is_url = false, $ns = "", $is_prefix = false) |
|
| 29 | { |
||
| 30 | 167 | $this->node = new SimpleXMLElement($data, $options, $data_is_url, $ns, $is_prefix); |
|
| 31 | 167 | } |
|
| 32 | |||
| 33 | 167 | public function __invoke() |
|
| 36 | } |
||
| 37 | } |
||
| 38 |