InMemoryWallet   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 22
c 0
b 0
f 0
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A withdraw() 0 3 1
A __construct() 0 3 1
A deposit() 0 3 1
A balance() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Damax\ChargeableApi\Wallet;
6
7
use Damax\ChargeableApi\Credit;
8
9
final class InMemoryWallet implements Wallet
10
{
11
    private $balance;
12
13
    public function __construct(int $balance)
14
    {
15
        $this->balance = Credit::fromInteger($balance);
16
    }
17
18
    public function balance(): Credit
19
    {
20
        return $this->balance;
21
    }
22
23
    public function deposit(Credit $credit): void
24
    {
25
        $this->balance = $this->balance->add($credit);
26
    }
27
28
    public function withdraw(Credit $credit): void
29
    {
30
        $this->balance = $this->balance->subtract($credit);
31
    }
32
}
33