infinito/application/src/Entity/Attribut/ChildsAttributeInterface.php

16 lines
272 B
PHP
Raw Normal View History

2018-09-06 14:34:43 +02:00
<?php
2018-09-12 22:25:22 +02:00
2018-09-06 14:34:43 +02:00
namespace App\Entity\Attribut;
2018-09-12 22:25:22 +02:00
2018-09-06 14:34:43 +02:00
use Doctrine\Common\Collections\ArrayCollection;
2018-09-12 22:25:22 +02:00
2018-09-06 14:34:43 +02:00
/**
* @author kevinfrantz
*/
interface ChildsAttributeInterface
{
2018-09-12 22:25:22 +02:00
public function setChilds(ArrayCollection $childs): void;
2018-09-06 14:34:43 +02:00
2018-09-12 22:25:22 +02:00
public function getChilds(): ArrayCollection;
}