mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
21 lines
488 B
PHP
21 lines
488 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Source\Collection;
|
||
|
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
use App\Entity\Attribut\MembersAttribut;
|
||
|
use App\Entity\Method\CollectionDimensionHelperMethod;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
* @todo remove deprecated trait membersattribut
|
||
|
* @ORM\Table(name="source_group")
|
||
|
* @ORM\Entity
|
||
|
*/
|
||
|
final class TreeCollectionSource extends AbstractCollectionSource implements TreeCollectionSourceInterface
|
||
|
{
|
||
|
use MembersAttribut;
|
||
|
use CollectionDimensionHelperMethod;
|
||
|
}
|