infinito/application/src/Entity/Attribut/VersionAttribut.php
2018-10-29 19:01:00 +01:00

25 lines
333 B
PHP

<?php
namespace App\Entity\Attribut;
/**
* @author kevinfrantz
*/
trait VersionAttribut
{
/**
* @var int
*/
protected $version;
public function setVersion(int $version): void
{
$this->version = $version;
}
public function getVersion(): int
{
return $this->version;
}
}