minor #11162 [Console] remove weird use statement (cordoval)

This PR was merged into the 2.5 branch.

Discussion
----------

[Console] remove weird use statement

|Q            |A     |
|---          |---   |
|Bug Fix?     |yes   |
|New Feature? |no    |
|BC Breaks?   |no    |
|Deprecations?|no    |
|Tests Pass?  |yes     |
|Fixed Tickets| |
|License      |MIT   |
|Doc PR       |      |

Commits
-------

c117e8e [Console] remove weird use statement
This commit is contained in:
Fabien Potencier 2014-06-19 18:27:19 +02:00
commit cd0309f847

View File

@ -10,7 +10,6 @@
*/
namespace Symfony\Component\Console\Question;
use Doctrine\Common\Proxy\Exception\InvalidArgumentException;
/**
* Represents a Question.
@ -184,7 +183,7 @@ class Question
*
* @return Question The current instance
*
* @throws InvalidArgumentException In case the number of attempts is invalid.
* @throws \InvalidArgumentException In case the number of attempts is invalid.
*/
public function setMaxAttempts($attempts)
{