infinito/application/src/Entity/attribut/IdAttribut.php
2018-09-06 12:58:36 +02:00

28 lines
393 B
PHP

<?php
namespace App\Entity\attribut;
/**
*
* @author kevinfrantz
*
*/
trait IdAttribut {
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")(strategy="AUTO")
*/
protected $id;
public function setId(int $id): void
{
$this->id = $id;
}
public function getId(): int
{
return $this->id;
}
}