mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
22 lines
475 B
PHP
22 lines
475 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\TemplateManagement;
|
||
|
|
||
|
/**
|
||
|
* Manages all informations which are needed to process templates.
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface TemplatePathInformationInterface extends ReloadTypeInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return string A template inclusiv frame. (Standalone)
|
||
|
*/
|
||
|
public function getMoleculeTemplatePath(): string;
|
||
|
|
||
|
/**
|
||
|
* @return string a template without a frame
|
||
|
*/
|
||
|
public function getAtomTemplatePath(): string;
|
||
|
}
|