src/Form/ReviewBatchType.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Form;
  3. use Symfony\Component\Form\FormBuilderInterface;
  4. /**
  5.  *
  6.  * @author wendell.zheng <wxzheng@ustc.edu.cn>
  7.  */
  8. class ReviewBatchType extends NameType
  9. {
  10.     public function buildForm(FormBuilderInterface $builder, array $options)
  11.     {
  12.         parent::buildForm($builder$options);
  13.         $builder->add('current'null, [
  14.             'label' => '是否当前批次',
  15.             'required' => false
  16.         ]);
  17.     }
  18. }