mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-29 21:08:13 +02:00
Optimized for SPA
This commit is contained in:
21
application/symfony/src/Entity/Meta/AbstractMeta.php
Normal file
21
application/symfony/src/Entity/Meta/AbstractMeta.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Meta;
|
||||
|
||||
use App\Entity\AbstractEntity;
|
||||
use App\Entity\Attribut\SourceAttribut;
|
||||
|
||||
/**
|
||||
* @todo Implement source attribut
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
abstract class AbstractMeta extends AbstractEntity implements MetaInterface
|
||||
{
|
||||
use SourceAttribut;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user