Failed Conditions
Pull Request — experimental/3.1 (#2449)
by Kiyotaka
52:40
created

PaymentResult   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 7
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A isSuccess() 0 4 1
1
<?php
2
namespace Eccube\Service\Payment;
3
4
class PaymentResult
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
5
{
6 3
    public function isSuccess()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
7
    {
8 3
        return true;
9
    }
10
}
11