mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
23 lines
448 B
PHP
23 lines
448 B
PHP
<?php
|
|
namespace App\Entity;
|
|
|
|
use App\Entity\attribut\IdAttribut;
|
|
use App\Entity\attribut\NodeAttribut;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
* @see https://www.doctrine-project.org/projects/doctrine-orm/en/2.6/reference/inheritance-mapping.html
|
|
*
|
|
*/
|
|
abstract class AbstractSource implements SourceInterface
|
|
{
|
|
use IdAttribut,NodeAttribut;
|
|
|
|
/**
|
|
*
|
|
* @var ConfigurationInterface
|
|
*/
|
|
protected $configuration;
|
|
|
|
} |