mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-06-25 22:35:32 +02:00
24 lines
501 B
PHP
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;
|
|
}
|