11 lines
207 B
PHP
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;
|
|
}
|