| 1 | <?php |
||
| 14 | class TextAssetType extends AbstractType |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $parameters; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param array $defaultsParameters |
||
| 23 | */ |
||
| 24 | public function __construct($defaultsParameters = array()) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function buildView(FormView $view, FormInterface $form, array $options) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function setDefaultOptions(OptionsResolverInterface $resolver) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function getParent() |
||
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritDoc} |
||
| 59 | * @see \Symfony\Component\Form\FormTypeInterface::getName() |
||
| 60 | */ |
||
| 61 | public function getName() |
||
| 65 | } |