Implemented more parts of imprint

This commit is contained in:
Kevin Frantz
2019-02-16 17:39:51 +01:00
parent 6126c96cbb
commit 7dae633ec7
2 changed files with 25 additions and 13 deletions

View File

@@ -95,11 +95,21 @@ final class TemplateNameService implements TemplateNameServiceInterface
return $this->getBasePath().$type.$this->getShortName().$this->getActionSuffix().self::TWIG_SUFFIX;
}
/**
* {@inheritdoc}
*
* @see \App\Domain\TemplateManagement\TemplateNameServiceInterface::getAtomTemplateName()
*/
public function getAtomTemplateName(): string
{
return $this->getTemplatePath(self::ATOM_PRAEFFIX);
}
/**
* {@inheritdoc}
*
* @see \App\Domain\TemplateManagement\TemplateNameServiceInterface::getMoleculeTemplateName()
*/
public function getMoleculeTemplateName(): string
{
return $this->getTemplatePath(self::MOLECULE_PRAEFFIX);