Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public static function getXPath(DOMNode $node): DOMXPath |
||
25 | { |
||
26 | $xp = parent::getXPath($node); |
||
27 | $xp->registerNamespace('soap-env', C::NS_SOAP); |
||
28 | $xp->registerNamespace('saml_protocol', C::NS_SAMLP); |
||
29 | $xp->registerNamespace('saml_assertion', C::NS_SAML); |
||
30 | $xp->registerNamespace('saml_metadata', C::NS_MD); |
||
31 | |||
32 | return $xp; |
||
33 | } |
||
35 |