mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 14:57:28 +01:00
16 lines
286 B
PHP
16 lines
286 B
PHP
|
<?php
|
||
|
namespace App\Entity\Attribut;
|
||
|
use Doctrine\Common\Collections\ArrayCollection;
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
interface ChildsAttributeInterface
|
||
|
{
|
||
|
public function setChilds(ArrayCollection $childs):void;
|
||
|
|
||
|
public function getChilds():ArrayCollection;
|
||
|
}
|
||
|
|