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

25 lines
293 B
PHP
Raw Normal View History

2018-09-06 12:58:36 +02:00
<?php
2018-09-12 22:25:22 +02:00
2018-09-06 13:52:34 +02:00
namespace App\Entity\Attribut;
2018-09-06 12:58:36 +02:00
/**
* @author kevinfrantz
*/
2018-09-12 22:25:22 +02:00
trait IdAttribut
{
2018-09-06 12:58:36 +02:00
/**
2018-09-13 14:39:03 +02:00
* @var int
2018-09-06 12:58:36 +02:00
*/
protected $id;
2018-09-12 22:25:22 +02:00
2018-09-06 12:58:36 +02:00
public function setId(int $id): void
{
$this->id = $id;
}
2018-09-12 22:25:22 +02:00
2018-09-06 12:58:36 +02:00
public function getId(): int
{
return $this->id;
}
}