infinito/application/src/Entity/AbstractEntity.php

25 lines
342 B
PHP
Raw Normal View History

2018-09-13 14:39:03 +02:00
<?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;
}