| 1 | <?php |
||
| 25 | final class FormFactory |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Creates a form factory with the default configuration. |
||
| 29 | * |
||
| 30 | * @return \Symfony\Component\Form\FormFactoryInterface |
||
| 31 | */ |
||
| 32 | public static function get() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Creates a form factory builder with the default configuration. |
||
| 39 | * |
||
| 40 | * @return FormFactoryBuilder |
||
| 41 | */ |
||
| 42 | public static function getBuilder() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * This class cannot be instantiated. |
||
| 55 | */ |
||
| 56 | private function __construct() |
||
| 59 | } |
||
| 60 |