11 lines
165 B
PHP
11 lines
165 B
PHP
<?php
|
|
|
|
namespace App\Interfaces;
|
|
|
|
use App\Entities\PaymentEntity;
|
|
|
|
interface PaymentInterface
|
|
{
|
|
public function setPayment(PaymentEntity $paymentEntity): mixed;
|
|
}
|