We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9257f7 commit c4b8270Copy full SHA for c4b8270
1 file changed
src/DOMDocumentFactory.php
@@ -5,10 +5,15 @@
5
namespace SimpleSAML\XML;
6
7
use DOMDocument;
8
+use LIBXML_COMPACT;
9
+use LIBXML_NONET;
10
+use LIBXML_NO_XXE;
11
+use LIBXML_NSCLEAN;
12
use SimpleSAML\Assert\Assert;
13
use SimpleSAML\XML\Exception\IOException;
14
use SimpleSAML\XML\Exception\RuntimeException;
15
use SimpleSAML\XML\Exception\UnparseableXMLException;
16
+use XML_DOCUMENT_TYPE_NODE;
17
18
use function file_get_contents;
19
use function func_num_args;
@@ -90,7 +95,6 @@ public static function fromString(
90
95
*/
91
96
public static function fromFile(
92
97
string $file,
93
- ?string $schemaFile = null,
94
98
int $options = self::DEFAULT_OPTIONS,
99
): DOMDocument {
100
error_clear_last();
0 commit comments