mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Implemented NameSpacePathMap as attribut
This commit is contained in:
@@ -115,4 +115,14 @@ final class TemplatePathInformation implements TemplatePathInformationInterface
|
||||
$this->type = $type;
|
||||
$this->init();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\TemplateManagement\TemplatePathInformationInterface::getType()
|
||||
*/
|
||||
public function getType(): string
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
|
@@ -2,6 +2,8 @@
|
||||
|
||||
namespace App\Domain\TemplateManagement;
|
||||
|
||||
use App\DBAL\Types\RESTResponseType;
|
||||
|
||||
/**
|
||||
* Manages all informations which are needed to process templates.
|
||||
*
|
||||
@@ -18,4 +20,11 @@ interface TemplatePathInformationInterface extends ReloadTypeInterface
|
||||
* @return string a template without a frame
|
||||
*/
|
||||
public function getAtomTemplatePath(): string;
|
||||
|
||||
/**
|
||||
* @see RESTResponseType::$choices
|
||||
*
|
||||
* @return string Type of the template
|
||||
*/
|
||||
public function getType(): string;
|
||||
}
|
||||
|
Reference in New Issue
Block a user