comparison vendor/symfony/serializer/Mapping/AttributeMetadata.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
28 /** 28 /**
29 * @internal This property is public in order to reduce the size of the 29 * @internal This property is public in order to reduce the size of the
30 * class' serialized representation. Do not access it. Use 30 * class' serialized representation. Do not access it. Use
31 * {@link getGroups()} instead. 31 * {@link getGroups()} instead.
32 */ 32 */
33 public $groups = array(); 33 public $groups = [];
34 34
35 /** 35 /**
36 * @var int|null 36 * @var int|null
37 * 37 *
38 * @internal This property is public in order to reduce the size of the 38 * @internal This property is public in order to reduce the size of the
113 * 113 *
114 * @return string[] 114 * @return string[]
115 */ 115 */
116 public function __sleep() 116 public function __sleep()
117 { 117 {
118 return array('name', 'groups', 'maxDepth'); 118 return ['name', 'groups', 'maxDepth'];
119 } 119 }
120 } 120 }