comparison vendor/symfony/validator/Mapping/MemberMetadata.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
27 * @see PropertyMetadataInterface 27 * @see PropertyMetadataInterface
28 */ 28 */
29 abstract class MemberMetadata extends GenericMetadata implements PropertyMetadataInterface 29 abstract class MemberMetadata extends GenericMetadata implements PropertyMetadataInterface
30 { 30 {
31 /** 31 /**
32 * @var string
33 *
34 * @internal This property is public in order to reduce the size of the 32 * @internal This property is public in order to reduce the size of the
35 * class' serialized representation. Do not access it. Use 33 * class' serialized representation. Do not access it. Use
36 * {@link getClassName()} instead. 34 * {@link getClassName()} instead.
37 */ 35 */
38 public $class; 36 public $class;
39 37
40 /** 38 /**
41 * @var string
42 *
43 * @internal This property is public in order to reduce the size of the 39 * @internal This property is public in order to reduce the size of the
44 * class' serialized representation. Do not access it. Use 40 * class' serialized representation. Do not access it. Use
45 * {@link getName()} instead. 41 * {@link getName()} instead.
46 */ 42 */
47 public $name; 43 public $name;
48 44
49 /** 45 /**
50 * @var string
51 *
52 * @internal This property is public in order to reduce the size of the 46 * @internal This property is public in order to reduce the size of the
53 * class' serialized representation. Do not access it. Use 47 * class' serialized representation. Do not access it. Use
54 * {@link getPropertyName()} instead. 48 * {@link getPropertyName()} instead.
55 */ 49 */
56 public $property; 50 public $property;
59 * @var \ReflectionMethod[]|\ReflectionProperty[] 53 * @var \ReflectionMethod[]|\ReflectionProperty[]
60 */ 54 */
61 private $reflMember = array(); 55 private $reflMember = array();
62 56
63 /** 57 /**
64 * Constructor.
65 *
66 * @param string $class The name of the class this member is defined on 58 * @param string $class The name of the class this member is defined on
67 * @param string $name The name of the member 59 * @param string $name The name of the member
68 * @param string $property The property the member belongs to 60 * @param string $property The property the member belongs to
69 */ 61 */
70 public function __construct($class, $name, $property) 62 public function __construct($class, $name, $property)