12 lines
277 B
PHP
12 lines
277 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Part;
|
|
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
|
|
interface PartInterface
|
|
{
|
|
public function attachToServerPart(ServerPartEntity $serverPartEntity): mixed;
|
|
public function detachFromServerPart(ServerPartEntity $serverPartEntity): mixed;
|
|
}
|