Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 1 | public function getDefaultDomConfig(DOMDocument $domDocument): DOMDocument |
|
39 | { |
||
40 | 1 | $domDocument->recover = true; |
|
41 | 1 | $domDocument->formatOutput = false; |
|
42 | 1 | $domDocument->preserveWhiteSpace = false; |
|
43 | 1 | $domDocument->resolveExternals = true; |
|
44 | 1 | $domDocument->substituteEntities = true; |
|
45 | 1 | $domDocument->strictErrorChecking = false; |
|
46 | 1 | $domDocument->validateOnParse = false; |
|
47 | |||
48 | 1 | return $domDocument; |
|
49 | } |
||
51 |