@@ -58,7 +58,7 @@ |
||
58 | 58 | } |
59 | 59 | ) |
60 | 60 | ->configureListeners( |
61 | - function (EventDispatcher $dispatcher) use ($config) { |
|
61 | + function(EventDispatcher $dispatcher) use ($config) { |
|
62 | 62 | $dispatcher->addSubscriber(new SoapExceptionEventSubscriber()); |
63 | 63 | $dispatcher->addSubscriber(new SoapDateTimeSanitizerEventSubscriber()); |
64 | 64 | $dispatcher->addSubscriber(new SoapMessageEventSubscriber()); |
@@ -87,7 +87,7 @@ |
||
87 | 87 | |
88 | 88 | public function __construct(Client $client) |
89 | 89 | { |
90 | - $this->report = function () use ($client) { |
|
90 | + $this->report = function() use ($client) { |
|
91 | 91 | if (!$this->kenmerk) { |
92 | 92 | return null; |
93 | 93 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | public function __construct(Client $client) |
34 | 34 | { |
35 | - $this->insolvente = function () use ($client) { |
|
35 | + $this->insolvente = function() use ($client) { |
|
36 | 36 | return $client->getCase($this->publicatieKenmerk, true); |
37 | 37 | }; |
38 | 38 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | new CommandHandlerMiddleware( |
71 | 71 | new ClassNameExtractor(), |
72 | 72 | new CallableLocator( |
73 | - function (string $request) { |
|
73 | + function(string $request) { |
|
74 | 74 | return $this->getHandler($request); |
75 | 75 | } |
76 | 76 | ), |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | ); |
329 | 329 | } |
330 | 330 | |
331 | - $soapActionMiddleware =new SoapActionMiddleware(); |
|
331 | + $soapActionMiddleware = new SoapActionMiddleware(); |
|
332 | 332 | return new SoapHandler( |
333 | 333 | $this->config, |
334 | 334 | new RequestHandler($this->client, $exceptionMiddleware, $soapActionMiddleware), |