Version: 2.6.4
Bug Description
In case of password key in arguments dump in Call stack I can still read original password as string in Title:

Steps To Reproduce
Run code:
public function process(): void
{
$this->setUser([
'user' => 'Jan',
'password' => 'moje heslo',
]);
}
private function setUser(array $haystack): void
{
$e(); // Throw error
}
and follow Title in parameter variable.
Thanks.