comparison vendor/symfony/validator/Validator/RecursiveValidator.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
22 * 22 *
23 * @author Bernhard Schussek <bschussek@gmail.com> 23 * @author Bernhard Schussek <bschussek@gmail.com>
24 */ 24 */
25 class RecursiveValidator implements ValidatorInterface 25 class RecursiveValidator implements ValidatorInterface
26 { 26 {
27 /**
28 * @var ExecutionContextFactoryInterface
29 */
30 protected $contextFactory; 27 protected $contextFactory;
31
32 /**
33 * @var MetadataFactoryInterface
34 */
35 protected $metadataFactory; 28 protected $metadataFactory;
36
37 /**
38 * @var ConstraintValidatorFactoryInterface
39 */
40 protected $validatorFactory; 29 protected $validatorFactory;
41
42 /**
43 * @var ObjectInitializerInterface[]
44 */
45 protected $objectInitializers; 30 protected $objectInitializers;
46 31
47 /** 32 /**
48 * Creates a new validator. 33 * Creates a new validator.
49 * 34 *