Issues (311)

src/XML/ds/KeyName.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\XMLSecurity\XML\ds;
6
7
use SimpleSAML\XML\SchemaValidatableElementInterface;
8
use SimpleSAML\XML\SchemaValidatableElementTrait;
9
use SimpleSAML\XML\TypedTextContentTrait;
10
use SimpleSAML\XMLSchema\Type\StringValue;
11
12
/**
13
 * Class representing a ds:KeyName element.
14
 *
15
 * @package simplesamlphp/xml-security
16
 */
17
final class KeyName extends AbstractDsElement implements SchemaValidatableElementInterface
18
{
19
    use SchemaValidatableElementTrait;
20
    use TypedTextContentTrait;
21
22
23
    public const string TEXTCONTENT_TYPE = StringValue::class;
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 23 at column 24
Loading history...
24
}
25