1 | <?php |
||
8 | class InStorePayment extends EcommercePayment |
||
|
|||
9 | { |
||
10 | private static $custom_message_for_in_store_payment = ""; |
||
11 | |||
12 | /** |
||
13 | * Process the In Store payment method |
||
14 | */ |
||
15 | public function processPayment($data, $form) |
||
22 | |||
23 | public function getPaymentFormFields() |
||
29 | |||
30 | public function getPaymentFormRequirements() |
||
34 | } |
||
35 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.