infinito/application/src/Entity/Attribut/LayerAttributInterface.php
2018-10-03 16:14:15 +02:00

14 lines
199 B
PHP

<?php
namespace App\Entity\Attribut;
/**
* @author kevinfrantz
*/
interface LayerAttributInterface
{
public function setLayer(string $layer): void;
public function getLayer(): string;
}