Completed
Pull Request — master (#51)
by Бабичев
06:59
created

Rate   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 8
c 1
b 0
f 1
dl 0
loc 37
ccs 8
cts 8
cp 1
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A withAmount() 0 4 1
A convertTo() 0 3 1
A withCurrency() 0 4 1
1
<?php
2
3
namespace Bavix\Wallet\Simple;
4
5
use Bavix\Wallet\Interfaces\Rateable;
6
use Bavix\Wallet\Interfaces\Wallet;
7
8
/**
9
 * Class Rate
10
 * @package Bavix\Wallet\Simple
11
 */
12
class Rate implements Rateable
13
{
14
15
    /**
16
     * @var int
17
     */
18
    protected $amount;
19
20
    /**
21
     * @var Wallet
22
     */
23
    protected $withCurrency;
24
25
    /**
26
     * @inheritDoc
27
     */
28 3
    public function withAmount(int $amount): Rateable
29
    {
30 3
        $this->amount = $amount;
31 3
        return $this;
32
    }
33
34
    /**
35
     * @inheritDoc
36
     */
37 3
    public function withCurrency(Wallet $wallet): Rateable
38
    {
39 3
        $this->withCurrency = $wallet;
40 3
        return $this;
41
    }
42
43
    /**
44
     * @inheritDoc
45
     */
46 3
    public function convertTo(Wallet $wallet): float
47
    {
48 3
        return $this->amount;
49
    }
50
51
}
52