Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/var-dumper/Resources/functions/dump.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 7a779792577d |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
15 /** | 15 /** |
16 * @author Nicolas Grekas <p@tchwork.com> | 16 * @author Nicolas Grekas <p@tchwork.com> |
17 */ | 17 */ |
18 function dump($var) | 18 function dump($var) |
19 { | 19 { |
20 foreach (func_get_args() as $var) { | 20 foreach (func_get_args() as $v) { |
21 VarDumper::dump($var); | 21 VarDumper::dump($v); |
22 } | 22 } |
23 | 23 |
24 if (1 < func_num_args()) { | 24 if (1 < func_num_args()) { |
25 return func_get_args(); | 25 return func_get_args(); |
26 } | 26 } |