<?php
namespace App\Form;
use Symfony\Component\Form\FormBuilderInterface;
/**
*
* @author wendell.zheng <wxzheng@ustc.edu.cn>
*/
class ReviewBatchType extends NameType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
parent::buildForm($builder, $options);
$builder->add('current', null, [
'label' => '是否当前批次',
'required' => false
]);
}
}