Issues (311)

src/XML/ds/HMACOutputLength.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\TypedTextContentTrait;
8
use SimpleSAML\XMLSecurity\Type\HMACOutputLengthValue;
9
10
/**
11
 * Class representing a ds:HMACOutputLength element.
12
 *
13
 * @package simplesamlphp/xml-security
14
 */
15
final class HMACOutputLength extends AbstractDsElement
16
{
17
    use TypedTextContentTrait;
18
19
20
    public const string TEXTCONTENT_TYPE = HMACOutputLengthValue::class;
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 20 at column 24
Loading history...
21
}
22