mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-14 06:07:18 +02:00
Implemented test for AbstractType to keep code coverage high
This commit is contained in:
9
application/src/Form/AbstractType.php
Normal file
9
application/src/Form/AbstractType.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Form;
|
||||
|
||||
use Symfony\Component\Form\AbstractType as AbstractSymfonyType;
|
||||
|
||||
class AbstractType extends AbstractSymfonyType
|
||||
{
|
||||
}
|
@@ -2,11 +2,10 @@
|
||||
|
||||
namespace App\Form;
|
||||
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use App\Entity\Source\NameSource;
|
||||
use App\Entity\Source\Data\NameSource;
|
||||
|
||||
class NameSourceType extends AbstractType
|
||||
{
|
||||
|
@@ -3,7 +3,6 @@
|
||||
namespace App\Form;
|
||||
|
||||
use App\Entity\User;
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
|
||||
|
@@ -3,7 +3,6 @@
|
||||
namespace App\Form;
|
||||
|
||||
use App\Entity\User;
|
||||
use Symfony\Component\Form\AbstractType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
|
Reference in New Issue
Block a user