public function NullValidatorTest::getInvalidValues

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Tests/Constraints/NullValidatorTest.php, line 61

Class

NullValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getInvalidValues() {
  return array(
    array(
      0,
    ),
    array(
      false,
    ),
    array(
      true,
    ),
    array(
      '',
    ),
  );
}