mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
15 lines
243 B
PHP
15 lines
243 B
PHP
<?php
|
|
|
|
namespace Infinito\Domain\Layer;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface LayerClassMapInterface
|
|
{
|
|
/**
|
|
* @return string The class which belongs to an Layer
|
|
*/
|
|
public static function getClass(string $layer): string;
|
|
}
|