Rate::withCurrency()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 5
ccs 3
cts 3
cp 1
crap 1
rs 10
c 1
b 0
f 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