mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 10:55:17 +01:00
21 lines
482 B
PHP
21 lines
482 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
|
|
*/
|
|
class TreeCollectionSource extends AbstractCollectionSource implements TreeCollectionSourceInterface
|
|
{
|
|
use MembersAttribut;
|
|
use CollectionDimensionHelperMethod;
|
|
}
|