Renamed domain LayerManagement to Layer

This commit is contained in:
Kevin Frantz
2019-05-30 16:18:10 +02:00
parent 592f7551a3
commit fd4093f270
14 changed files with 18 additions and 18 deletions

View File

@@ -0,0 +1,16 @@
<?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;
}