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