Completed
Push — master ( 60aec0...f632bc )
by Andreas
12:47 queued 10:41
created

RetrieveTransaction   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getId() 0 4 1
A canCommit() 0 4 1
1
<?php
2
3
namespace Larium\Pay\Transaction;
4
5
class RetrieveTransaction implements Retrieve
6
{
7
    use Commit;
8
9
    private $id;
10
11 1
    public function __construct($id)
12
    {
13 1
        $this->id = $id;
14 1
    }
15
16
    public function getId()
17
    {
18
        return $this->id;
19
    }
20
21
    public function canCommit()
22
    {
23
        return null !== $this->id;
24
    }
25
}
26