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

RetrieveTransaction::canCommit()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 0
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
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