<?php
namespace App\Form;
use Symfony\Component\Form\FormBuilderInterface;
/**
*
* @author wendell.zheng <wxzheng@ustc.edu.cn>
*/
class AnnouncementType extends NameValidType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
parent::buildForm($builder, $options);
$builder->add('content', null, [
'label' => '内容'
])->add('publishedAt', null, [
'label' => '发布日期',
'widget' => 'single_text'
]);
}
}