infinito/application/symfony/src/Domain/Layer/LayerClassMapInterface.php

17 lines
278 B
PHP
Raw Normal View History

2019-01-26 17:06:29 +01:00
<?php
namespace Infinito\Domain\Layer;
2019-01-26 17:06:29 +01:00
/**
* @author kevinfrantz
*/
interface LayerClassMapInterface
{
/**
* @param string $layer
*
* @return string The class which belongs to an Layer
*/
public static function getClass(string $layer): string;
}