You are here

public function AllValidatorTest::getValidArguments in Zircon Profile 8.0

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

File

vendor/symfony/validator/Tests/Constraints/AllValidatorTest.php, line 86

Class

AllValidatorTest

Namespace

Symfony\Component\Validator\Tests\Constraints

Code

public function getValidArguments() {
  return array(
    array(
      array(
        5,
        6,
        7,
      ),
    ),
    array(
      new \ArrayObject(array(
        5,
        6,
        7,
      )),
    ),
  );
}