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

KeyName::validateContent()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

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