mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
22 lines
483 B
PHP
22 lines
483 B
PHP
<?php
|
|
|
|
namespace App\Domain\FormManagement;
|
|
|
|
use App\Domain\TemplateManagement\TemplatePathInformationInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
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;
|
|
}
|