dbmsv3/app/Interfaces/PaymentInterface.php
2025-10-13 14:57:04 +09:00

11 lines
207 B
PHP

<?php
namespace App\Interfaces;
use App\Entities\PaymentEntity;
interface PaymentInterface
{
public function setPayment(string $action, PaymentEntity $paymentEntity, array $formDatas): PaymentEntity;
}