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