Fix Licences withdrawals

This commit is contained in:
Xbird
2022-04-29 14:30:04 +00:00
parent 4ce623e948
commit e8f61fcccc
15 changed files with 90 additions and 71 deletions

View File

@@ -4,7 +4,7 @@ namespace App\Form;
use App\Form\DocumentType;
use App\Form\Type\VehicleType;
use App\Entity\LicenceWithdrawal;
use App\Entity\Licencewithdrawal;
use App\Form\Type\DateTimeVisionType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
@@ -30,7 +30,7 @@ class LicencewithdrawalType extends DocumentType
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => LicenceWithdrawal::class,
'data_class' => Licencewithdrawal::class,
]);
}
}