infinito/application/symfony/src/Domain/FormManagement/FormMetaInformationInterface.php
2019-01-26 19:47:50 +01:00

24 lines
501 B
PHP

<?php
namespace App\Domain\FormManagement;
use App\Domain\TemplateManagement\TemplatePathInformationInterface;
/**
* @author kevinfrantz
*
* @deprecated
*/
interface FormMetaInformationInterface
{
/**
* @return string The string to the form class
*/
public function getFormClass(): string;
/**
* @return TemplatePathInformationInterface The form template path information
*/
public function getTemplatePathInformation(): TemplatePathInformationInterface;
}