Pārlūkot izejas kodu

[Form] Added getType() to FormFactoryInterface

Bernhard Schussek 14 gadi atpakaļ
vecāks
revīzija
fdd18250b3
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  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);
 }