mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
20 lines
378 B
PHP
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;
|
|
}
|