Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class FeeModel |
||
16 | { |
||
17 | /** |
||
18 | * @var float |
||
19 | */ |
||
20 | private $volume; |
||
21 | /** |
||
22 | * @var float |
||
23 | */ |
||
24 | private $percentFee; |
||
25 | |||
26 | /** |
||
27 | * FeeModel constructor. |
||
28 | * @param float $volume |
||
29 | * @param float $percentFee |
||
30 | */ |
||
31 | 1 | public function __construct($volume, $percentFee) |
|
35 | 1 | } |
|
36 | |||
37 | /** |
||
38 | * @return float |
||
39 | */ |
||
40 | 1 | public function getVolume() |
|
43 | } |
||
44 | |||
45 | /** |
||
46 | * @return float |
||
47 | */ |
||
48 | 1 | public function getPercentFee() |
|
53 |