InMemoryWalletFactory::__construct()   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\Identity\Identity;
8
9
final class InMemoryWalletFactory implements WalletFactory
10
{
11
    private $accounts;
12
13
    public function __construct(array $accounts)
14
    {
15
        $this->accounts = $accounts;
16
    }
17
18
    public function create(Identity $identity): Wallet
19
    {
20
        return new InMemoryWallet($this->accounts[(string) $identity] ?? 0);
21
    }
22
}
23