Issues (343)

src/XMLSchema/Constants.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\XMLSchema;
6
7
/**
8
 * Various XML constants.
9
 *
10
 * @package simplesamlphp/xml-common
11
 */
12
class Constants
13
{
14
    /**
15
     * The namespace for XML schema.
16
     */
17
    public const string NS_XS = 'http://www.w3.org/2001/XMLSchema';
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 17 at column 24
Loading history...
18
19
    /**
20
     * The namespace for XML schema instance.
21
     */
22
    public const string NS_XSI = 'http://www.w3.org/2001/XMLSchema-instance';
23
}
24