mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
25 lines
293 B
PHP
25 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
trait IdAttribut
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $id;
|
|
|
|
public function setId(int $id): void
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function getId(): int
|
|
{
|
|
return $this->id;
|
|
}
|
|
}
|