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