comparison vendor/symfony/serializer/Mapping/ClassMetadataInterface.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 c2387f117808
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
31 */ 31 */
32 public function getName(); 32 public function getName();
33 33
34 /** 34 /**
35 * Adds an {@link AttributeMetadataInterface}. 35 * Adds an {@link AttributeMetadataInterface}.
36 *
37 * @param AttributeMetadataInterface $attributeMetadata
38 */ 36 */
39 public function addAttributeMetadata(AttributeMetadataInterface $attributeMetadata); 37 public function addAttributeMetadata(AttributeMetadataInterface $attributeMetadata);
40 38
41 /** 39 /**
42 * Gets the list of {@link AttributeMetadataInterface}. 40 * Gets the list of {@link AttributeMetadataInterface}.
45 */ 43 */
46 public function getAttributesMetadata(); 44 public function getAttributesMetadata();
47 45
48 /** 46 /**
49 * Merges a {@link ClassMetadataInterface} in the current one. 47 * Merges a {@link ClassMetadataInterface} in the current one.
50 *
51 * @param ClassMetadataInterface $classMetadata
52 */ 48 */
53 public function merge(ClassMetadataInterface $classMetadata); 49 public function merge(ClassMetadataInterface $classMetadata);
54 50
55 /** 51 /**
56 * Returns a {@link \ReflectionClass} instance for this class. 52 * Returns a {@link \ReflectionClass} instance for this class.