infinito/application/symfony/src/Entity/Attribut/LayerAttribut.php

25 lines
326 B
PHP
Raw Normal View History

2018-09-21 15:48:23 +02:00
<?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;
}
}