* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form; interface FormFactoryInterface { function createBuilder($type, $name = null, array $options = array()); function createBuilderForProperty($class, $property, array $options = array()); function create($type, $name = null, array $options = array()); function createForProperty($class, $property, array $options = array()); }