comparison vendor/symfony/translation/Util/ArrayConverter.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents a9cd425dd02b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
25 */ 25 */
26 class ArrayConverter 26 class ArrayConverter
27 { 27 {
28 /** 28 /**
29 * Converts linear messages array to tree-like array. 29 * Converts linear messages array to tree-like array.
30 * For example this rray('foo.bar' => 'value') will be converted to ['foo' => ['bar' => 'value']]. 30 * For example this array('foo.bar' => 'value') will be converted to ['foo' => ['bar' => 'value']].
31 * 31 *
32 * @param array $messages Linear messages array 32 * @param array $messages Linear messages array
33 * 33 *
34 * @return array Tree-like messages array 34 * @return array Tree-like messages array
35 */ 35 */