Issues (43)

src/SOAP12/Constants.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\SOAP12;
6
7
/**
8
 * Class holding constants relevant for XML SOAP
9
 *
10
 * @package simplesamlphp/xml-soap
11
 */
12
13
class Constants extends \SimpleSAML\XML\Constants
14
{
15
    /**
16
     * The namespace for the SOAP envelope 1.2.
17
     */
18
    public const string NS_SOAP_ENV = 'http://www.w3.org/2003/05/soap-envelope';
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 18 at column 24
Loading history...
19
20
    /**
21
     * The namespace for SOAP encoding 1.2.
22
     */
23
    public const string NS_SOAP_ENC = 'http://www.w3.org/2003/05/soap-encoding';
24
}
25