Explorar el Código

[Form] Added getType() to FormFactoryInterface

Bernhard Schussek hace 14 años
padre
commit
fdd18250b3
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/Symfony/Component/Form/FormFactoryInterface.php

+ 2 - 0
src/Symfony/Component/Form/FormFactoryInterface.php

@@ -24,4 +24,6 @@ interface FormFactoryInterface
     function createNamedBuilder($type, $name, $data = null, array $options = array());
 
     function createBuilderForProperty($class, $property, $data = null, array $options = array());
+
+    function getType($name);
 }