Files
infinito/application/src/Entity/Attribut/TypeAttribut.php
2018-09-13 16:51:58 +02:00

25 lines
318 B
PHP

<?php
namespace App\Entity\Attribut;
/**
* @author kevinfrantz
*/
trait TypeAttribut
{
/**
* @var string
*/
protected $type;
public function setType(string $type): void
{
$this->type = $type;
}
public function getType(): string
{
return $this->type;
}
}