mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
25 lines
326 B
PHP
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;
|
||
|
}
|
||
|
}
|