Issues (43)

src/SOAP11/Constants.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\SOAP11;
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.1.
17
     */
18
    public const string NS_SOAP_ENV = 'http://schemas.xmlsoap.org/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.1.
22
     */
23
    public const string NS_SOAP_ENC = 'https://schemas.xmlsoap.org/soap/encoding/';
24
25
    /**
26
     */
27
    public const string SOAP_ACTOR_NEXT = 'http://schemas.xmlsoap.org/soap/actor/next';
28
}
29