Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/var-dumper/Cloner/DumperInterface.php @ 12:7a779792577d
Update Drupal core to v8.4.5 (via Composer)
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 15:52:07 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
11:bfffd8d7479a | 12:7a779792577d |
---|---|
19 interface DumperInterface | 19 interface DumperInterface |
20 { | 20 { |
21 /** | 21 /** |
22 * Dumps a scalar value. | 22 * Dumps a scalar value. |
23 * | 23 * |
24 * @param Cursor $cursor The Cursor position in the dump | 24 * @param Cursor $cursor The Cursor position in the dump |
25 * @param string $type The PHP type of the value being dumped | 25 * @param string $type The PHP type of the value being dumped |
26 * @param scalar $value The scalar value being dumped | 26 * @param string|int|float|bool $value The scalar value being dumped |
27 */ | 27 */ |
28 public function dumpScalar(Cursor $cursor, $type, $value); | 28 public function dumpScalar(Cursor $cursor, $type, $value); |
29 | 29 |
30 /** | 30 /** |
31 * Dumps a string. | 31 * Dumps a string. |