RedisWalletFactory::create()   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
use Predis\ClientInterface;
9
10
final class RedisWalletFactory implements WalletFactory
11
{
12
    private $client;
13
    private $walletKey;
14
15
    public function __construct(ClientInterface $client, string $walletKey)
16
    {
17
        $this->client = $client;
18
        $this->walletKey = $walletKey;
19
    }
20
21
    public function create(Identity $identity): Wallet
22
    {
23
        return new RedisWallet($this->client, $this->walletKey, (string) $identity);
24
    }
25
}
26