Issues (48)

src/SOAP11/XML/AbstractSoapElement.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\SOAP11\XML;
6
7
use SimpleSAML\SOAP11\Constants as C;
8
use SimpleSAML\XML\AbstractElement;
9
10
/**
11
 * Abstract class to be implemented by all the classes in this namespace
12
 *
13
 * @package simplesamlphp/xml-soap
14
 */
15
abstract class AbstractSoapElement extends AbstractElement
16
{
17
    public const string NS = C::NS_SOAP_ENV;
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting '=' on line 17 at column 24
Loading history...
18
19
    public const string NS_PREFIX = 'SOAP-ENV';
20
21
    public const string SCHEMA = 'resources/schemas/soap-envelope-1.1.xsd';
22
}
23