mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-20 03:44:35 +02:00
Implemented interfaces
This commit is contained in:
parent
25e63d4983
commit
83d6c27883
@ -7,6 +7,6 @@ use Symfony\Component\Form\AbstractType as AbstractSymfonyType;
|
|||||||
/**
|
/**
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
*/
|
*/
|
||||||
abstract class AbstractType extends AbstractSymfonyType
|
abstract class AbstractType extends AbstractSymfonyType implements TypeInterface
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Form\Source;
|
||||||
|
|
||||||
|
use App\Form\TypeInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author kevinfrantz
|
||||||
|
*/
|
||||||
|
interface PureSourceTypeInterface extends TypeInterface
|
||||||
|
{
|
||||||
|
}
|
12
application/symfony/src/Form/TypeInterface.php
Normal file
12
application/symfony/src/Form/TypeInterface.php
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Form;
|
||||||
|
|
||||||
|
use Symfony\Component\Form\FormTypeInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author kevinfrantz
|
||||||
|
*/
|
||||||
|
interface TypeInterface extends FormTypeInterface
|
||||||
|
{
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user