simplesamlphp /
xml-soap
| 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
Bug
introduced
by
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 |