Passed
Push — ref ( 45b89b )
by Asmir
02:50
created
src/Envelope/SoapEnvelope12/Messages/Fault.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,9 +61,9 @@
 block discarded – undo
61 61
 
62 62
         if ($e instanceof VersionMismatchException) {
63 63
             $faultCode->setValue('SOAP:VersionMismatch');
64
-        }elseif ($e instanceof MustUnderstandException) {
64
+        } elseif ($e instanceof MustUnderstandException) {
65 65
             $faultCode->setValue('SOAP:MustUnderstand');
66
-        }elseif ($e instanceof ClientException) {
66
+        } elseif ($e instanceof ClientException) {
67 67
             $faultCode->setValue('SOAP:Sender');
68 68
         } else {
69 69
             $faultCode->setValue('SOAP:Receiver');
Please login to merge, or discard this patch.
src/Envelope/SoapEnvelope/Messages/Fault.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,9 +57,9 @@
 block discarded – undo
57 57
 
58 58
         if ($e instanceof ClientException) {
59 59
             $fault->setCode('SOAP:Client');
60
-        }elseif ($e instanceof VersionMismatchException) {
60
+        } elseif ($e instanceof VersionMismatchException) {
61 61
             $fault->setCode('SOAP:VersionMismatch');
62
-        }elseif ($e instanceof MustUnderstandException) {
62
+        } elseif ($e instanceof MustUnderstandException) {
63 63
             $fault->setCode('SOAP:MustUnderstand');
64 64
         } else {
65 65
             $fault->setCode('SOAP:Server');
Please login to merge, or discard this patch.