Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function allowed(): array |
||
24 | { |
||
25 | return [ |
||
26 | 'id' => 'int', // The unique id for the object. |
||
27 | 'name' => 'string', // The name of the gift voucher. |
||
28 | 'amount' => 'float', // The purchase amount for this gift voucher. |
||
29 | 'voucher_type' => 'string', // Can be: value or spaces. |
||
30 | 'discount' => 'float', // The discountable amount for a gift code belonging to this voucher. |
||
31 | 'description' => 'string', // The description of how the gift voucher is applied. |
||
32 | 'status' => 'bool', // True if the gift voucher is active. |
||
33 | ]; |
||
36 |