Issues (311)

src/XML/ds/DigestValue.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\XMLSecurity\Type\DigestValue as DigestValueType;
11
12
/**
13
 * Class representing a ds:DigestValue element.
14
 *
15
 * @package simplesaml/xml-security
16
 */
17
final class DigestValue extends AbstractDsElement implements SchemaValidatableElementInterface
18
{
19
    use SchemaValidatableElementTrait;
20
    use TypedTextContentTrait;
21
22
23
    public const string TEXTCONTENT_TYPE = DigestValueType::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