Files
LesRecettesDePapis/src/Domain/LinkableInterface.php

13 lines
414 B
PHP
Raw Normal View History

2026-04-02 18:10:47 +02:00
<?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;
}