The SensitiveParameterValue class

(PHP 8 >= 8.2.0)

Introducción

The SensitiveParameterValue class allows wrapping sensitive values to protect them against accidental exposure.

Values of parameters having the SensitiveParameter attribute will automatically be wrapped inside of a SensitiveParameterValue object within stack traces.

Sinopsis de la Clase

finalclassSensitiveParameterValue {
privatereadonlymixed$value;
public__construct(mixed$value)
publicgetValue(): mixed
}

Propiedades

value

The sensitive value to be protected against accidental exposure.

Tabla de contenidos

To Top