| Total Complexity | 8 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Changes | 4 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 10 | class PercentageDiscount extends Discount |
||
| 11 | { |
||
| 12 | private static $table_name = 'Discount_Percentage'; |
||
|
|
|||
| 13 | |||
| 14 | private static $description = "A simple cost-based discount"; |
||
| 15 | |||
| 16 | private static $db = [ |
||
| 17 | "Amount" => "Decimal" |
||
| 18 | ]; |
||
| 19 | |||
| 20 | public function appliedAmount(AppliedDiscount $item) |
||
| 23 | } |
||
| 24 | |||
| 25 | public function calculateAmount(Estimate $estimate) |
||
| 63 |