src/AdminBundle/Form/Type/Vehicle/FileType.php line 7

Open in your IDE?
  1. <?php
  2. namespace AdminBundle\Form\Type\Vehicle;
  3. use Symfony\Component\Form\Extension\Core\Type\TextType;
  4. class FileType extends TextType
  5. {
  6.     /**
  7.      * {@inheritdoc}
  8.      */
  9.     public function getBlockPrefix(): string
  10.     {
  11.         return 'vehicle_file';
  12.     }
  13. }