Issues (311)

src/XML/xenc11/PBKDF2params.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\XMLSecurity\XML\xenc11;
6
7
/**
8
 * A class implementing the xenc11:PBKDF2-params element.
9
 *
10
 * @package simplesamlphp/xml-security
11
 */
12
final class PBKDF2params extends AbstractPBKDF2ParameterType
13
{
14
    public const string LOCALNAME = 'PBKDF2-params';
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 14 at column 24
Loading history...
15
}
16