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