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

22 lines
428 B
PHP

<?php
namespace Infinito\Domain\TemplateManagement;
/**
* @deprecated
*
* @author kevinfrantz
*/
interface TemplatePathFormAndViewInterface extends ReloadTypeInterface
{
/**
* @return TemplatePathInformationInterface
*/
public function getForm(): TemplatePathInformationInterface;
/**
* @return TemplatePathInformationInterface
*/
public function getView(): TemplatePathInformation;
}