MongoWalletFactory::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 MongoDB\Client;
9
10
final class MongoWalletFactory implements WalletFactory
11
{
12
    private $client;
13
    private $dbName;
14
    private $collectionName;
15
16
    public function __construct(Client $client, string $dbName, string $collectionName)
17
    {
18
        $this->client = $client;
19
        $this->dbName = $dbName;
20
        $this->collectionName = $collectionName;
21
    }
22
23
    public function create(Identity $identity): Wallet
24
    {
25
        return new MongoWallet($this->client->selectCollection($this->dbName, $this->collectionName), (string) $identity);
26
    }
27
}
28