You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
491 B
29 lines
491 B
<?php
|
|
|
|
abstract class AbstractType implements FormTypeInterface
|
|
{
|
|
|
|
protected $fields = [];
|
|
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function buildForm(FormBuilderInterface $builder, array $options)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function buildView(FormView $view, FormInterface $form, array $options)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function finishView(FormView $view, FormInterface $form, array $options)
|
|
{
|
|
}
|
|
} |