11 lines
218 B
PHP
11 lines
218 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Customer;
|
|
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
|
|
interface ServiceInterface extends CustomerInterface
|
|
{
|
|
public function setServiceAmount(array $formDatas): ServerPartEntity;
|
|
}
|