SensitiveParameterValue::getValue

Returns the sensitive value

Description

public mixed SensitiveParameterValue::getValue()

Warning

This function is currently not documented; only its argument list is available.

Parameters

This function has no parameters.

Return Values

The sensitive value.

Examples

Example #1 SensitiveParameterValue::getValue example

<?php
$s = new \SensitiveParameterValue('secret');

echo "The protected value is: ", $s->getValue(), "\n";
?>

The above example will output:

The protected value is: secret