Skip to content

Commit 91ec0b5

Browse files
author
Maelmin Henge
committed
Fix namespace and engine factory
1 parent 1e43566 commit 91ec0b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Engine/AsyncEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Hengebytes\SoapCoreAsyncBundle\Engine;
44

5+
use Hengebytes\SoapCoreAsyncBundle\Response\SoapResponse;
56
use Psr\Http\Message\RequestInterface;
67
use Soap\Engine\Driver;
78
use Soap\Engine\HttpBinding\SoapRequest;
@@ -10,7 +11,6 @@
1011
use Soap\Xml\Manipulator\PrependSoapHeaders;
1112
use Symfony\Contracts\HttpClient\HttpClientInterface;
1213
use Symfony\Contracts\HttpClient\ResponseInterface;
13-
use SynxisBundle\Response\SoapResponse;
1414
use VeeWee\Xml\Dom\Document;
1515

1616
readonly class AsyncEngine

src/Engine/AsyncEngineFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ abstract class AsyncEngineFactory
2020
public static function createFromWSDL(string $location, HttpClientInterface $httpClient): AsyncEngine
2121
{
2222
if (!isset(self::$engines[$location])) {
23-
$wsdl = (new Wsdl1Reader)(new FlatteningLoader(new StreamWrapperLoader()))(
23+
$wsdl = (new Wsdl1Reader(new FlatteningLoader(new StreamWrapperLoader())))(
2424
$location,
2525
ParserContext::defaults()
2626
);

0 commit comments

Comments
 (0)