File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ class DPMCompleteResponse extends SIMCompleteAuthorizeResponse implements Redire
2323
2424 public function isSuccessful ()
2525 {
26- return isset ($ this ->data ['x_response_code ' ]) && static ::RESPONSE_CODE_APPROVED === $ this ->data ['x_response_code ' ];
26+ return isset ($ this ->data ['x_response_code ' ])
27+ && static ::RESPONSE_CODE_APPROVED === $ this ->data ['x_response_code ' ];
2728 }
2829
2930 /**
@@ -32,7 +33,8 @@ public function isSuccessful()
3233 */
3334 public function isError ()
3435 {
35- return isset ($ this ->data ['x_response_code ' ]) && static ::RESPONSE_CODE_ERROR === $ this ->data ['x_response_code ' ];
36+ return isset ($ this ->data ['x_response_code ' ])
37+ && static ::RESPONSE_CODE_ERROR === $ this ->data ['x_response_code ' ];
3638 }
3739
3840 /**
You can’t perform that action at this time.
0 commit comments