Skip to content

Commit c4b8270

Browse files
committed
Remove unused parameter
1 parent a9257f7 commit c4b8270

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/DOMDocumentFactory.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,15 @@
55
namespace SimpleSAML\XML;
66

77
use DOMDocument;
8+
use LIBXML_COMPACT;
9+
use LIBXML_NONET;
10+
use LIBXML_NO_XXE;
11+
use LIBXML_NSCLEAN;
812
use SimpleSAML\Assert\Assert;
913
use SimpleSAML\XML\Exception\IOException;
1014
use SimpleSAML\XML\Exception\RuntimeException;
1115
use SimpleSAML\XML\Exception\UnparseableXMLException;
16+
use XML_DOCUMENT_TYPE_NODE;
1217

1318
use function file_get_contents;
1419
use function func_num_args;
@@ -90,7 +95,6 @@ public static function fromString(
9095
*/
9196
public static function fromFile(
9297
string $file,
93-
?string $schemaFile = null,
9498
int $options = self::DEFAULT_OPTIONS,
9599
): DOMDocument {
96100
error_clear_last();

0 commit comments

Comments
 (0)