mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-08-21 19:25:03 +02:00
22 lines
428 B
PHP
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;
|
|
}
|