mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-04 22:33:48 +00:00
14 lines
197 B
PHP
14 lines
197 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface LayerAttributInterface
|
|
{
|
|
public function setLayer(string $layer): void;
|
|
|
|
public function getLayer(): string;
|
|
}
|