You are here

public function BlankValidatorTest::getInvalidValues in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Constraints/BlankValidatorTest.php \Symfony\Component\Validator\Tests\Constraints\BlankValidatorTest::getInvalidValues()

File

vendor/symfony/validator/Tests/Constraints/BlankValidatorTest.php, line 60

Class

BlankValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getInvalidValues() {
  return array(
    array(
      'foobar',
      '"foobar"',
    ),
    array(
      0,
      '0',
    ),
    array(
      false,
      'false',
    ),
    array(
      1234,
      '1234',
    ),
  );
}