8000 [3.0] [Validator] deprecations cleanup by TomasVotruba · Pull Request #15708 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[3.0] [Validator] deprecations cleanup #15708

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
[3.0] validator deprecations cleanup - cleanup legacy code
  • Loading branch information
TomasVotruba committed Sep 21, 2015
commit 4f1b8c97555f63afd993dd5e2d726c397220b473
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,6 @@ public function testValidatorInterfaceSinceSymfony25()
$this->assertAttributeSame($validator, 'validator', $formTypeValidatorExtension);
}

/**
* @expectedException \InvalidArgumentException
*/
public function testInvalidValidatorInterface()
{
new FormTypeValidatorExtension(null);
}

protected function createForm(array $options = array())
{
return $this->factory->create('Symfony\Component\Form\Extension\Core\Type\FormType', null, $options);
Expand Down
0