Passed
Branch master (5dec71)
by Bas
03:35
created
src/Soap/Serializer/SoapSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
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());
Please login to merge, or discard this patch.
src/Model/Verslag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/Model/PublicatieReference.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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),
Please login to merge, or discard this patch.