Total Complexity | 5 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | abstract class AbstractSignedMdElement extends AbstractMdElement implements SignableElementInterface, SignedElementInterface |
||
19 | { |
||
20 | use SignableElementTrait; |
||
1 ignored issue
–
show
|
|||
21 | use SignedElementTrait; |
||
1 ignored issue
–
show
|
|||
22 | |||
23 | |||
24 | /** |
||
25 | * @return array|null |
||
26 | */ |
||
27 | public function getBlacklistedAlgorithms(): ?array |
||
28 | { |
||
29 | $container = ContainerSingleton::getInstance(); |
||
30 | return $container->getBlacklistedEncryptionAlgorithms(); |
||
31 | } |
||
32 | |||
33 | |||
34 | /** |
||
35 | * @param \DOMElement|null $parent The EntityDescriptor we should append this SPSSODescriptor to. |
||
36 | * @return \DOMElement |
||
37 | * @throws \Exception |
||
38 | */ |
||
39 | public function toXML(DOMElement $parent = null): DOMElement |
||
58 | } |
||
59 | } |
||
60 |