mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-29 12:58:11 +02:00
25 lines
318 B
PHP
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;
|
|
}
|
|
}
|