Rate   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A convertTo() 0 3 1
A withAmount() 0 5 1
A withCurrency() 0 5 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
 */
11
class Rate implements Rateable
12
{
13
    /**
14
     * @var int
15
     */
16
    protected $amount;
17
18
    /**
19
     * @var Wallet|\Bavix\Wallet\Models\Wallet
20
     */
21
    protected $withCurrency;
22
23
    /**
24
     * {@inheritdoc}
25
     */
26 3
    public function withAmount($amount): Rateable
27
    {
28 3
        $this->amount = $amount;
29
30 3
        return $this;
31
    }
32
33
    /**
34
     * {@inheritdoc}
35
     */
36 3
    public function withCurrency(Wallet $wallet): Rateable
37
    {
38 3
        $this->withCurrency = $wallet;
39
40 3
        return $this;
41
    }
42
43
    /**
44
     * {@inheritdoc}
45
     */
46 3
    public function convertTo(Wallet $wallet)
47
    {
48 3
        return $this->amount;
49
    }
50
}
51