13 lines
414 B
PHP
13 lines
414 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Domain;
|
||
|
|
|
||
|
|
interface LinkableInterface {
|
||
|
|
|
||
|
|
public function getIdLinkedTo( string $linkedTo, string $linkingField, Model $linkedEntity ): ?array;
|
||
|
|
|
||
|
|
public function addLinkBetween( string $linkedTo, string $linkingField, Model $linkedEntity, Model $entity ): bool;
|
||
|
|
|
||
|
|
public function removeLinkBetween( string $linkedTo, string $linkingField, Model $linkedEntity, Model $entity ): bool;
|
||
|
|
|
||
|
|
}
|