FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Infrastructure
/
Services
/
Payment
Edit File: StarterPaymentService.php
<?php /** * @copyright © TMS-Plugins. All rights reserved. * @licence See LICENCE.md for license details. */ namespace AmeliaBooking\Infrastructure\Services\Payment; use AmeliaBooking\Domain\Services\Payment\AbstractPaymentService; use AmeliaBooking\Domain\Services\Payment\PaymentServiceInterface; use Exception; /** * Class StarterPaymentService */ class StarterPaymentService extends AbstractPaymentService implements PaymentServiceInterface { /** * @param array $data * @param array $transfers * * @return mixed */ public function execute($data, &$transfers) { return []; } /** * @param array $data * * @return mixed */ public function complete($data) { return null; } /** * @param array $data * * @return array */ public function getPaymentLink($data) { return []; } /** * @param array $data * * @return array * @throws Exception */ public function refund($data) { return []; } /** * @return mixed|null */ public function getTransactionAmount($id, $transfers) { return null; } }
Save
Back