Sfoglia il codice sorgente

[Form] Added missing import statement of namespaces.

Deni 14 anni fa
parent
commit
a15abc09bd

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

@@ -11,6 +11,8 @@
 
 namespace Symfony\Component\Form;
 
+use Symfony\Component\Form\Exception\UnexpectedTypeException;
+
 abstract class AbstractType implements FormTypeInterface
 {
     private $extensions = array();

+ 1 - 0
src/Symfony/Component/Form/FormTypeGuesserChain.php

@@ -12,6 +12,7 @@
 namespace Symfony\Component\Form;
 
 use Symfony\Component\Form\Guess\Guess;
+use Symfony\Component\Form\Exception\UnexpectedTypeException;
 
 class FormTypeGuesserChain implements FormTypeGuesserInterface
 {