Passed
Push — master ( 884157...1e26f3 )
by Tim
01:56
created

SignatureValue::fromXML()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 3
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 6
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\XMLSecurity\XML\ds;
6
7
use SimpleSAML\XML\XMLBase64ElementTrait;
8
9
/**
10
 * Class representing a ds:SignatureValue element.
11
 *
12
 * @package simplesaml/xml-security
13
 */
14
final class SignatureValue extends AbstractDsElement
15
{
16
    use XMLBase64ElementTrait;
0 ignored issues
show
introduced by
The trait SimpleSAML\XML\XMLBase64ElementTrait requires some properties which are not provided by SimpleSAML\XMLSecurity\XML\ds\SignatureValue: $localName, $namespaceURI
Loading history...
17
}
18