[Form] Added missing import statement of namespaces.

This commit is contained in:
Deni 2011-05-09 14:30:04 +04:00
parent 787935f5dc
commit a15abc09bd
2 changed files with 3 additions and 0 deletions

View File

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

View File

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