2018-09-06 14:34:43 +02:00
|
|
|
<?php
|
2018-09-12 23:25:22 +03:00
|
|
|
|
2019-02-17 14:33:19 +01:00
|
|
|
namespace Infinito\Attribut;
|
2018-09-12 23:25:22 +03:00
|
|
|
|
2018-09-14 18:26:09 +02:00
|
|
|
use Doctrine\Common\Collections\Collection;
|
2018-09-12 23:25:22 +03:00
|
|
|
|
2018-09-06 14:34:43 +02:00
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
2019-02-07 13:14:55 +01:00
|
|
|
interface ChildsAttributInterface
|
2018-09-06 14:34:43 +02:00
|
|
|
{
|
2018-09-14 18:26:09 +02:00
|
|
|
public function setChilds(Collection $childs): void;
|
2018-09-06 14:34:43 +02:00
|
|
|
|
2018-09-14 18:26:09 +02:00
|
|
|
public function getChilds(): Collection;
|
2018-09-12 23:25:22 +03:00
|
|
|
}
|