[Form] Cleaned the FormValidatorInterface deprecation

This commit is contained in:
Christophe Coevoet 2012-04-13 18:57:23 +02:00
parent baabe2649e
commit 9e956a8ecd
2 changed files with 6 additions and 14 deletions

View File

@ -77,7 +77,7 @@ class Form implements \IteratorAggregate, FormInterface
/**
* The mapper for mapping data to children and back
* @var DataMapper\DataMapperInterface
* @var DataMapperInterface
*/
private $dataMapper;
@ -801,18 +801,6 @@ class Form implements \IteratorAggregate, FormInterface
return $this->clientTransformers;
}
/**
* Returns the Validators
*
* @return array An array of FormValidatorInterface
*
* @deprecated Deprecated since version 2.1, to be removed in 2.3.
*/
public function getValidators()
{
return $this->validators;
}
/**
* Returns all children in this group.
*

View File

@ -32,7 +32,7 @@ class DelegatingValidationListenerTest extends \PHPUnit_Framework_TestCase
private $delegate;
private $validator;
private $listener;
private $message;
@ -40,6 +40,10 @@ class DelegatingValidationListenerTest extends \PHPUnit_Framework_TestCase
protected function setUp()
{
if (!class_exists('Symfony\Component\EventDispatcher\Event')) {
$this->markTestSkipped('The "EventDispatcher" component is not available');
}
$this->dispatcher = $this->getMock('Symfony\Component\EventDispatcher\EventDispatcherInterface');
$this->factory = $this->getMock('Symfony\Component\Form\FormFactoryInterface');
$this->delegate = $this->getMock('Symfony\Component\Validator\ValidatorInterface');