This commit is contained in:
Fabien Potencier 2012-02-02 11:21:34 +01:00
parent 8245bf13d5
commit 3c8d300125
8 changed files with 3 additions and 12 deletions

View File

@ -146,4 +146,4 @@ abstract class LazyChoiceList implements ChoiceListInterface
$this->choiceList = $choiceList;
}
}
}

View File

@ -73,4 +73,4 @@ class GlobalExecutionContext
{
return $this->metadataFactory;
}
}
}

View File

@ -113,4 +113,4 @@ class LazyChoiceListTest_InvalidImpl extends LazyChoiceList
{
return new \stdClass();
}
}
}

View File

@ -11,7 +11,6 @@
namespace Symfony\Tests\Component\Validator\Constraints;
use Symfony\Component\Validator\GlobalExecutionContext;
use Symfony\Component\Validator\ExecutionContext;
use Symfony\Component\Validator\Constraints\Min;

View File

@ -11,10 +11,7 @@
namespace Symfony\Tests\Component\Validator\Constraints;
use Symfony\Component\Validator\GlobalExecutionContext;
use Symfony\Component\Validator\ExecutionContext;
use Symfony\Component\Validator\ConstraintViolation;
use Symfony\Component\Validator\ConstraintViolationList;
use Symfony\Component\Validator\Constraints\Callback;
use Symfony\Component\Validator\Constraints\CallbackValidator;

View File

@ -11,7 +11,6 @@
namespace Symfony\Tests\Component\Validator\Constraints;
use Symfony\Component\Validator\GlobalExecutionContext;
use Symfony\Component\Validator\ExecutionContext;
use Symfony\Component\Validator\Constraints\Choice;

View File

@ -11,10 +11,7 @@
namespace Symfony\Tests\Component\Validator\Constraints;
use Symfony\Component\Validator\GlobalExecutionContext;
use Symfony\Component\Validator\ConstraintViolation;
use Symfony\Component\Validator\ConstraintViolationList;
use Symfony\Component\Validator\ExecutionContext;
use Symfony\Component\Validator\Constraints\Min;
use Symfony\Component\Validator\Constraints\NotNull;

View File

@ -13,7 +13,6 @@ namespace Symfony\Tests\Component\Validator\Constraints;
use Symfony\Component\Validator\Constraints\Type;
use Symfony\Component\Validator\Constraints\TypeValidator;
use Symfony\Component\Validator\ConstraintViolation;
class TypeValidatorTest extends \PHPUnit_Framework_TestCase
{