Completed
Pull Request — master (#51)
by Бабичев
09:33 queued 02:25
created

Rate::withAmount()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
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
c 1
b 0
f 1
nc 1
nop 1
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 1
rs 10
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|\Bavix\Wallet\Models\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