Skip to content

Commit

Permalink
Fix namespace for SOAP-elements
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Nov 14, 2024
1 parent 12984ec commit 2030901
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions phpstan-baseline.neon
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ parameters:
path: src/Configuration/SimpleSAMLConverter.php

-
message: "#^Call to static method fromXML\\(\\) on an unknown class SimpleSAML\\\\SOAP11\\\\XML\\\\env\\\\Envelope\\.$#"
message: "#^Call to static method fromXML\\(\\) on an unknown class SimpleSAML\\\\SOAP11\\\\XML\\\\env_200106\\\\Envelope\\.$#"
count: 1
path: src/SOAPClient.php

-
message: "#^Call to static method fromXML\\(\\) on an unknown class SimpleSAML\\\\SOAP11\\\\XML\\\\env\\\\Fault\\.$#"
message: "#^Call to static method fromXML\\(\\) on an unknown class SimpleSAML\\\\SOAP11\\\\XML\\\\env_200106\\\\Fault\\.$#"
count: 1
path: src/SOAPClient.php

Expand All @@ -111,12 +111,12 @@ parameters:
path: src/SOAPClient.php

-
message: "#^Instantiated class SimpleSAML\\\\SOAP11\\\\XML\\\\env\\\\Body not found\\.$#"
message: "#^Instantiated class SimpleSAML\\\\SOAP11\\\\XML\\\\env_200106\\\\Body not found\\.$#"
count: 1
path: src/SOAPClient.php

-
message: "#^Instantiated class SimpleSAML\\\\SOAP11\\\\XML\\\\env\\\\Envelope not found\\.$#"
message: "#^Instantiated class SimpleSAML\\\\SOAP11\\\\XML\\\\env_200106\\\\Envelope not found\\.$#"
count: 1
path: src/SOAPClient.php

Expand All @@ -131,7 +131,7 @@ parameters:
path: src/SOAPClient.php

-
message: "#^Method SimpleSAML\\\\SAML2\\\\SOAPClient\\:\\:getSOAPFault\\(\\) has invalid return type SimpleSAML\\\\SOAP11\\\\XML\\\\env\\\\Fault\\.$#"
message: "#^Method SimpleSAML\\\\SAML2\\\\SOAPClient\\:\\:getSOAPFault\\(\\) has invalid return type SimpleSAML\\\\SOAP11\\\\XML\\\\env_200106\\\\Fault\\.$#"
count: 1
path: src/SOAPClient.php

Expand Down
6 changes: 3 additions & 3 deletions src/SOAPClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
use SimpleSAML\SAML2\XML\samlp\AbstractMessage;
use SimpleSAML\SAML2\XML\samlp\MessageFactory;
use SimpleSAML\SOAP11\Utils\XPath;
use SimpleSAML\SOAP11\XML\env\Body;
use SimpleSAML\SOAP11\XML\env\Envelope;
use SimpleSAML\SOAP11\XML\env\Fault;
use SimpleSAML\SOAP11\XML\env_200106\Body;
use SimpleSAML\SOAP11\XML\env_200106\Envelope;
use SimpleSAML\SOAP11\XML\env_200106\Fault;
use SimpleSAML\Utils\Config;
use SimpleSAML\Utils\Crypto;
use SimpleSAML\XML\Chunk;
Expand Down

0 comments on commit 2030901

Please sign in to comment.