Skip to content

Commit 1f61b24

Browse files
committed
Wrap some lines to shorten them.
1 parent 6661d9b commit 1f61b24

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Message/DPMCompleteResponse.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
/**

0 commit comments

Comments
 (0)