InMemoryWallet::withdraw()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
nc 1
nop 1
dl 0
loc 3
c 0
b 0
f 0
cc 1
rs 10
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