11 lines
212 B
PHP
11 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Customer;
|
|
|
|
use App\Entities\Customer\ServiceEntity;
|
|
|
|
interface ServiceInterface
|
|
{
|
|
public function setAmount(ServiceEntity $entity, int $calculatedServerAmount): ServiceEntity;
|
|
}
|