infinito/application/src/Entity/Attribut/IdAttribut.php

28 lines
393 B
PHP
Raw Normal View History

2018-09-06 12:58:36 +02:00
<?php
2018-09-06 13:52:34 +02:00
namespace App\Entity\Attribut;
2018-09-06 12:58:36 +02:00
/**
*
* @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;
}
}