<?php declare(strict_types=1); namespace App\Core\Payment; use App\Core\Payment\Entities\Payment; use App\Core\Payment\Entities\PaymentIntentResponse; use App\Core\Payment\Entities\PaymentRetrieveResponse; interface PaymentMethodInterface { public function pay(Payment $payment): PaymentIntentResponse; public function retrieve(Payment $payment): PaymentRetrieveResponse; }