1--TEST--
2A SensitiveParameterValue may not be converted to a string.
3--FILE--
4<?php
5
6$v = new SensitiveParameterValue('secret');
7
8var_dump((string)$v);
9
10?>
11--EXPECTF--
12Fatal error: Uncaught Error: Object of class SensitiveParameterValue could not be converted to string in %ssensitive_parameter_value_to_string.php:5
13Stack trace:
14#0 {main}
15  thrown in %ssensitive_parameter_value_to_string.php on line 5
16