comparison vendor/symfony/var-dumper/Cloner/Data.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
257 257
258 $data = null; 258 $data = null;
259 $children = $this->data[$item->position]; 259 $children = $this->data[$item->position];
260 260
261 foreach ($keys as $key) { 261 foreach ($keys as $key) {
262 if (isset($children[$key]) || array_key_exists($key, $children)) { 262 if (isset($children[$key]) || \array_key_exists($key, $children)) {
263 $data = clone $this; 263 $data = clone $this;
264 $data->key = $key; 264 $data->key = $key;
265 $data->position = $item->position; 265 $data->position = $item->position;
266 break; 266 break;
267 } 267 }