vendor/symfony/validator/Constraints/Collection.php line 23

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Validator\Constraints;
  11. use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
  12. /**
  13.  * @Annotation
  14.  * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  15.  *
  16.  * @author Bernhard Schussek <bschussek@gmail.com>
  17.  */
  18. #[\Attribute(\Attribute::TARGET_PROPERTY \Attribute::TARGET_METHOD \Attribute::IS_REPEATABLE)]
  19. class Collection extends Composite
  20. {
  21.     public const MISSING_FIELD_ERROR '2fa2158c-2a7f-484b-98aa-975522539ff8';
  22.     public const NO_SUCH_FIELD_ERROR '7703c766-b5d5-4cef-ace7-ae0dd82304e9';
  23.     protected static $errorNames = [
  24.         self::MISSING_FIELD_ERROR => 'MISSING_FIELD_ERROR',
  25.         self::NO_SUCH_FIELD_ERROR => 'NO_SUCH_FIELD_ERROR',
  26.     ];
  27.     public $fields = [];
  28.     public $allowExtraFields false;
  29.     public $allowMissingFields false;
  30.     public $extraFieldsMessage 'This field was not expected.';
  31.     public $missingFieldsMessage 'This field is missing.';
  32.     /**
  33.      * {@inheritdoc}
  34.      */
  35.     public function __construct($fields null, array $groups null$payload nullbool $allowExtraFields nullbool $allowMissingFields nullstring $extraFieldsMessage nullstring $missingFieldsMessage null)
  36.     {
  37.         // no known options set? $fields is the fields array
  38.         if (\is_array($fields)
  39.             && !array_intersect(array_keys($fields), ['groups''fields''allowExtraFields''allowMissingFields''extraFieldsMessage''missingFieldsMessage'])) {
  40.             $fields = ['fields' => $fields];
  41.         }
  42.         parent::__construct($fields$groups$payload);
  43.         $this->allowExtraFields $allowExtraFields ?? $this->allowExtraFields;
  44.         $this->allowMissingFields $allowMissingFields ?? $this->allowMissingFields;
  45.         $this->extraFieldsMessage $extraFieldsMessage ?? $this->extraFieldsMessage;
  46.         $this->missingFieldsMessage $missingFieldsMessage ?? $this->missingFieldsMessage;
  47.     }
  48.     /**
  49.      * {@inheritdoc}
  50.      */
  51.     protected function initializeNestedConstraints()
  52.     {
  53.         parent::initializeNestedConstraints();
  54.         if (!\is_array($this->fields)) {
  55.             throw new ConstraintDefinitionException(sprintf('The option "fields" is expected to be an array in constraint "%s".'__CLASS__));
  56.         }
  57.         foreach ($this->fields as $fieldName => $field) {
  58.             // the XmlFileLoader and YamlFileLoader pass the field Optional
  59.             // and Required constraint as an array with exactly one element
  60.             if (\is_array($field) && == \count($field)) {
  61.                 $this->fields[$fieldName] = $field $field[0];
  62.             }
  63.             if (!$field instanceof Optional && !$field instanceof Required) {
  64.                 $this->fields[$fieldName] = new Required($field);
  65.             }
  66.         }
  67.     }
  68.     public function getRequiredOptions()
  69.     {
  70.         return ['fields'];
  71.     }
  72.     protected function getCompositeOption()
  73.     {
  74.         return 'fields';
  75.     }
  76. }