Implemented interfaces

This commit is contained in:
Kevin Frantz 2019-02-07 14:31:54 +01:00
parent 25e63d4983
commit 83d6c27883
3 changed files with 25 additions and 1 deletions

View File

@ -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
{
}

View File

@ -0,0 +1,12 @@
<?php
namespace App\Form\Source;
use App\Form\TypeInterface;
/**
* @author kevinfrantz
*/
interface PureSourceTypeInterface extends TypeInterface
{
}

View File

@ -0,0 +1,12 @@
<?php
namespace App\Form;
use Symfony\Component\Form\FormTypeInterface;
/**
* @author kevinfrantz
*/
interface TypeInterface extends FormTypeInterface
{
}