mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-29 23:05:59 +01:00
17 lines
283 B
PHP
17 lines
283 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\LayerManagement;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface LayerClassMapInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param string $layer
|
||
|
*
|
||
|
* @return string The class which belongs to an Layer
|
||
|
*/
|
||
|
public static function getClass(string $layer): string;
|
||
|
}
|