public function AllValidatorTest::getValidArguments in Zircon Profile 8        
                          
                  
                        Same name and namespace in other branches
- 8.0 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,
      )),
    ),
  );
}