infinito/application/src/Entity/Meta/AbstractMeta.php

16 lines
250 B
PHP
Raw Normal View History

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;
/**
* @author kevinfrantz
*/
abstract class AbstractMeta extends AbstractEntity implements MetaInterface
{
2018-10-31 14:14:04 +01:00
public function __construct(){
parent::__construct();
}
2018-10-29 19:01:00 +01:00
}