mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
23 lines
462 B
PHP
23 lines
462 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use App\Entity\Attribut\IdAttribut;
|
|
use App\Entity\Attribut\SourceAttribut;
|
|
use App\Entity\Attribut\ParentAttribut;
|
|
use App\Entity\Attribut\ChildsAttribut;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
* @ORM\Table(name="node")
|
|
* @ORM\Entity(repositoryClass="App\Repository\NodeRepository")
|
|
*/
|
|
class Node implements NodeInterface
|
|
{
|
|
use IdAttribut,
|
|
SourceAttribut,
|
|
ParentAttribut,
|
|
ChildsAttribut;
|
|
}
|