27 lines
535 B
PHP
Raw Normal View History

2018-10-25 22:35:11 +02:00
<?php
namespace App\Entity\Source;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\Collection;
2018-10-27 14:56:26 +02:00
use App\Entity\Source\Attribut\MembersAttributInterface;
use App\Entity\Source\Attribut\MembersAttribut;
2018-10-25 22:35:11 +02:00
/**
*
* @author kevinfrantz
2018-10-28 15:41:43 +01:00
* @ORM\Table(name="source_group")
2018-10-25 22:35:11 +02:00
* @ORM\Entity
*/
2018-10-27 14:56:26 +02:00
class GroupSource extends AbstractSource implements MembersAttributInterface
2018-10-25 22:35:11 +02:00
{
2018-10-27 14:56:26 +02:00
use MembersAttribut;
2018-10-25 22:35:11 +02:00
/**
*
* @var Collection
* @ORM\ManyToMany(targetEntity="AbstractSource")
*/
2018-10-27 14:56:26 +02:00
protected $members;
2018-10-25 22:35:11 +02:00
}