This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Components/Validator/Constraints/All.php

18 lines
324 B
PHP
Raw Normal View History

<?php
namespace Symfony\Components\Validator\Constraints;
class All extends \Symfony\Components\Validator\Constraint
{
public $constraints = array();
public function defaultOption()
{
return 'constraints';
}
public function requiredOptions()
{
return array('constraints');
}
}