Completed
Push — master ( 075950...974b7a )
by Vuong
02:25
created

ResponseData   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getIsOk() 0 4 1
1
<?php
2
/**
3
 * @link https://github.com/yiiviet/yii2-payment
4
 * @copyright Copyright (c) 2017 Yii Viet
5
 * @license [New BSD License](http://www.opensource.org/licenses/bsd-license.php)
6
 */
7
8
9
namespace yiiviet\payment\momo;
10
11
use vxm\gatewayclients\ResponseData as BaseResponseData;
12
13
class ResponseData extends BaseResponseData
14
{
15
16
    public function getIsOk(): bool
17
    {
18
        // TODO: Implement getIsOk() method.
19
    }
20
21
}
22