mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
25 lines
342 B
PHP
25 lines
342 B
PHP
|
<?php
|
||
|
namespace App\Entity;
|
||
|
|
||
|
use App\Entity\Attribut\IdAttribut;
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
class AbstractEntity
|
||
|
{
|
||
|
use IdAttribut;
|
||
|
|
||
|
/**
|
||
|
* @ORM\Id()
|
||
|
* @ORM\GeneratedValue
|
||
|
* @ORM\Column(type="integer")(strategy="AUTO")
|
||
|
* @var int
|
||
|
*/
|
||
|
protected $id;
|
||
|
}
|
||
|
|