Removed unnecessary attribut

This commit is contained in:
Kevin Frantz 2018-11-05 00:02:34 +01:00
parent dd0ab989d8
commit 7ba354be02
2 changed files with 0 additions and 42 deletions

View File

@ -1,23 +0,0 @@
<?php
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection;
use App\Entity\Source\SourceInterface;
trait SourceCollectionAttribut
{
/**
* @param Collection|SourceInterface[] $collection
*/
public function setCollection(Collection $collection): void
{
}
/**
* @return Collection|SourceInterface[]
*/
public function getCollection(): Collection
{
}
}

View File

@ -1,19 +0,0 @@
<?php
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection;
use App\Entity\Source\SourceInterface;
interface SourceCollectionAttributInterface
{
/**
* @param Collection|SourceInterface[] $collection
*/
public function setCollection(Collection $collection): void;
/**
* @return Collection|SourceInterface[]
*/
public function getCollection(): Collection;
}