mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
16 lines
271 B
PHP
16 lines
271 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut\Interfaces;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface ParentsAttributInterface
|
|
{
|
|
public function setParents(Collection $parents): void;
|
|
|
|
public function getParents(): Collection;
|
|
}
|