Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class Purchase extends Record |
||
14 | { |
||
15 | use IsPurchasableModelTrait; |
||
16 | |||
17 | public function getPaymentMethod() |
||
19 | // TODO: Implement getPaymentMethod() method. |
||
20 | } |
||
21 | |||
22 | public function getPurchaseAmount() |
||
23 | { |
||
24 | // TODO: Implement getPurchaseAmount() method. |
||
25 | } |
||
26 | |||
27 | public function getName() |
||
29 | // TODO: Implement getName() method. |
||
30 | } |
||
32 |