infinito/application/src/Entity/Attribut/LayerAttribut.php
2018-09-21 15:48:23 +02:00

25 lines
326 B
PHP

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