mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2024-12-04 23:17:19 +01: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
|
||||
*/
|
||||
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…
Reference in New Issue
Block a user