Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class FeeModel |
||
12 | { |
||
13 | /** |
||
14 | * @var float |
||
15 | */ |
||
16 | private $volume; |
||
17 | /** |
||
18 | * @var float |
||
19 | */ |
||
20 | private $percentFee; |
||
21 | |||
22 | /** |
||
23 | * FeeModel constructor. |
||
24 | * @param float $volume |
||
25 | * @param float $percentFee |
||
26 | */ |
||
27 | 1 | public function __construct($volume, $percentFee) |
|
31 | 1 | } |
|
32 | |||
33 | /** |
||
34 | * @return float |
||
35 | */ |
||
36 | 1 | public function getVolume() |
|
39 | } |
||
40 | |||
41 | /** |
||
42 | * @return float |
||
43 | */ |
||
44 | 1 | public function getPercentFee() |
|
49 |