mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Optimized draft for meta and template informations
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?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;
|
||||
}
|
Reference in New Issue
Block a user