comparison vendor/symfony/serializer/Mapping/ClassMetadata.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 1fec387a4317
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
30 * 30 *
31 * @internal This property is public in order to reduce the size of the 31 * @internal This property is public in order to reduce the size of the
32 * class' serialized representation. Do not access it. Use 32 * class' serialized representation. Do not access it. Use
33 * {@link getAttributesMetadata()} instead. 33 * {@link getAttributesMetadata()} instead.
34 */ 34 */
35 public $attributesMetadata = array(); 35 public $attributesMetadata = [];
36 36
37 /** 37 /**
38 * @var \ReflectionClass 38 * @var \ReflectionClass
39 */ 39 */
40 private $reflClass; 40 private $reflClass;
104 * 104 *
105 * @return string[] 105 * @return string[]
106 */ 106 */
107 public function __sleep() 107 public function __sleep()
108 { 108 {
109 return array( 109 return [
110 'name', 110 'name',
111 'attributesMetadata', 111 'attributesMetadata',
112 ); 112 ];
113 } 113 }
114 } 114 }