[Form] removed obsolete use statements

This commit is contained in:
Fabien Potencier 2010-09-09 18:29:50 +02:00
parent a141c98917
commit 50f039844b
15 changed files with 0 additions and 32 deletions

View File

@ -2,9 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\InputCheckboxRenderer;
use Symfony\Component\Form\ValueTransformer\BooleanToStringTransformer;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com> * (c) Fabien Potencier <fabien.potencier@symfony-project.com>

View File

@ -2,12 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\SelectRenderer;
use Symfony\Component\Form\Renderer\InputRadioRenderer;
use Symfony\Component\Form\Renderer\InputCheckboxRenderer;
use Symfony\Component\Form\ValueTransformer\ValueTransformerInterface;
use Symfony\Component\Form\ValueTransformer\BooleanToStringTransformer;
/** /**
* Lets the user select between different choices * Lets the user select between different choices
* *

View File

@ -4,9 +4,6 @@ namespace Symfony\Component\Form;
use Symfony\Component\Form\Exception\InvalidPropertyException; use Symfony\Component\Form\Exception\InvalidPropertyException;
use Symfony\Component\Form\Exception\PropertyAccessDeniedException; use Symfony\Component\Form\Exception\PropertyAccessDeniedException;
use Symfony\Component\Form\Exception\NotBoundException;
use Symfony\Component\Form\Exception\NotValidException;
use Symfony\Component\Form\Exception\InvalidConfigurationException;
use Symfony\Component\Form\ValueTransformer\ValueTransformerInterface; use Symfony\Component\Form\ValueTransformer\ValueTransformerInterface;
use Symfony\Component\Form\ValueTransformer\TransformationFailedException; use Symfony\Component\Form\ValueTransformer\TransformationFailedException;
use Symfony\Component\I18N\TranslatorInterface; use Symfony\Component\I18N\TranslatorInterface;

View File

@ -4,8 +4,6 @@ namespace Symfony\Component\Form;
use Symfony\Component\Form\Exception\AlreadyBoundException; use Symfony\Component\Form\Exception\AlreadyBoundException;
use Symfony\Component\Form\Exception\UnexpectedTypeException; use Symfony\Component\Form\Exception\UnexpectedTypeException;
use Symfony\Component\Form\Exception\InvalidPropertyException;
use Symfony\Component\Form\Exception\PropertyAccessDeniedException;
use Symfony\Component\Form\Renderer\RendererInterface; use Symfony\Component\Form\Renderer\RendererInterface;
use Symfony\Component\Form\Renderer\TableRenderer; use Symfony\Component\Form\Renderer\TableRenderer;
use Symfony\Component\Form\Iterator\RecursiveFieldsWithPropertyPathIterator; use Symfony\Component\Form\Iterator\RecursiveFieldsWithPropertyPathIterator;

View File

@ -3,9 +3,7 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Validator\ValidatorInterface; use Symfony\Component\Validator\ValidatorInterface;
use Symfony\Component\Validator\ConstraintViolation;
use Symfony\Component\I18N\TranslatorInterface; use Symfony\Component\I18N\TranslatorInterface;
use Symfony\Component\File\UploadedFile;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.

View File

@ -2,8 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\InputHiddenRenderer;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com> * (c) Fabien Potencier <fabien.potencier@symfony-project.com>

View File

@ -2,7 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\InputTextRenderer;
use Symfony\Component\Form\ValueTransformer\NumberToLocalizedStringTransformer; use Symfony\Component\Form\ValueTransformer\NumberToLocalizedStringTransformer;
/* /*

View File

@ -2,8 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\InputPasswordRenderer;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com> * (c) Fabien Potencier <fabien.potencier@symfony-project.com>

View File

@ -2,9 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\InputCheckboxRenderer;
use Symfony\Component\Form\ValueTransformer\BooleanToStringTransformer;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com> * (c) Fabien Potencier <fabien.potencier@symfony-project.com>

View File

@ -4,7 +4,6 @@ namespace Symfony\Component\Form\Renderer;
use Symfony\Component\I18N\TranslatorInterface; use Symfony\Component\I18N\TranslatorInterface;
use Symfony\Component\Form\FieldInterface; use Symfony\Component\Form\FieldInterface;
use Symfony\Component\Form\HtmlGenerator;
use Symfony\Component\Form\HtmlGeneratorInterface; use Symfony\Component\Form\HtmlGeneratorInterface;
use Symfony\Component\Form\Configurable; use Symfony\Component\Form\Configurable;

View File

@ -3,7 +3,6 @@
namespace Symfony\Component\Form\Renderer; namespace Symfony\Component\Form\Renderer;
use Symfony\Component\Form\FieldInterface; use Symfony\Component\Form\FieldInterface;
use Symfony\Component\Form\Field\ChoiceField;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.

View File

@ -2,8 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\InputTextRenderer;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com> * (c) Fabien Potencier <fabien.potencier@symfony-project.com>

View File

@ -2,8 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\TextareaRenderer;
/* /*
* This file is part of the symfony package. * This file is part of the symfony package.
* (c) Fabien Potencier <fabien.potencier@symfony-project.com> * (c) Fabien Potencier <fabien.potencier@symfony-project.com>

View File

@ -2,7 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Exception\InvalidOptionsException;
use Symfony\Component\Form\ValueTransformer\ReversedTransformer; use Symfony\Component\Form\ValueTransformer\ReversedTransformer;
use Symfony\Component\Form\ValueTransformer\DateTimeToArrayTransformer; use Symfony\Component\Form\ValueTransformer\DateTimeToArrayTransformer;
use Symfony\Component\Form\ValueTransformer\StringToDateTimeTransformer; use Symfony\Component\Form\ValueTransformer\StringToDateTimeTransformer;

View File

@ -2,7 +2,6 @@
namespace Symfony\Component\Form; namespace Symfony\Component\Form;
use Symfony\Component\Form\Renderer\InputCheckboxRenderer;
use Symfony\Component\Form\ValueTransformer\BooleanToStringTransformer; use Symfony\Component\Form\ValueTransformer\BooleanToStringTransformer;
/* /*