2018-10-28 15:25:32 +01:00
|
|
|
<?php
|
2018-10-29 19:01:00 +01:00
|
|
|
|
2018-10-28 15:25:32 +01:00
|
|
|
namespace App\Entity\Meta;
|
|
|
|
|
|
|
|
use App\Entity\AbstractEntity;
|
2018-11-25 22:33:54 +01:00
|
|
|
use App\Entity\Attribut\SourceAttribut;
|
2018-10-28 15:25:32 +01:00
|
|
|
|
|
|
|
/**
|
2018-11-25 22:33:54 +01:00
|
|
|
* @todo Implement source attribut
|
|
|
|
*
|
2018-10-28 15:25:32 +01:00
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
|
|
|
abstract class AbstractMeta extends AbstractEntity implements MetaInterface
|
|
|
|
{
|
2018-11-25 22:33:54 +01:00
|
|
|
use SourceAttribut;
|
|
|
|
|
2018-10-31 14:28:32 +01:00
|
|
|
public function __construct()
|
|
|
|
{
|
2018-10-31 14:14:04 +01:00
|
|
|
parent::__construct();
|
|
|
|
}
|
2018-10-29 19:01:00 +01:00
|
|
|
}
|