Files
infinito/application/symfony/src/Domain/TemplateManagement/TemplateNameServiceInterface.php
2019-02-17 14:33:19 +01:00

20 lines
378 B
PHP

<?php
namespace Infinito\Domain\TemplateManagement;
/**
* @author kevinfrantz
*/
interface TemplateNameServiceInterface
{
/**
* @return string A template inclusiv frame. (Standalone)
*/
public function getMoleculeTemplateName(): string;
/**
* @return string a template without a frame
*/
public function getAtomTemplateName(): string;
}