| Conditions | 2 |
| Paths | 2 |
| Total Lines | 5 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function __construct( $setRootElement = null, $allowDocumentType = false, $XML_OPTIONS = 0, $schemaOrCallable = null ) { |
||
| 35 | $this->XML_OPTIONS = $XML_OPTIONS | ( defined( 'LIBXML_COMPACT' ) ? LIBXML_COMPACT : 0 ); |
||
| 36 | $this->setRootElement = $setRootElement; |
||
| 37 | $this->allowDocumentType = $allowDocumentType; |
||
| 38 | $this->schemaOrCallable = $schemaOrCallable; |
||
| 39 | } |
||
| 69 | } |