| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class Base extends OrderModifier |
||
| 13 | { |
||
| 14 | private static $db = [ |
||
|
|
|||
| 15 | 'Rate' => 'Double', |
||
| 16 | ]; |
||
| 17 | |||
| 18 | private static $defaults = [ |
||
| 19 | 'Rate' => 0.15 //15% tax |
||
| 20 | ]; |
||
| 21 | |||
| 22 | private static $table_name = 'SilverShop_TaxModifier'; |
||
| 23 | |||
| 24 | private static $singular_name = 'Tax'; |
||
| 25 | |||
| 26 | private static $plural_name = 'Taxes'; |
||
| 27 | |||
| 28 | public function getTableTitle() |
||
| 42 |