Removed deprecated trait,interface and test

This commit is contained in:
Kevin Frantz
2018-11-04 23:51:33 +01:00
parent b5062c01ba
commit cd3585c3e3
3 changed files with 0 additions and 182 deletions

View File

@@ -1,28 +0,0 @@
<?php
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection;
/**
* Allows to group other sources in a source.
*
* @author kevinfrantz
*/
interface MembersAttributInterface
{
/**
* @param Collection $members
*/
public function setMembers(Collection $members): void;
/**
* @return Collection
*/
public function getMembers(): Collection;
/**
* @return Collection
*/
public function getMembersIncludingChildren(int $dimension = null): Collection;
}