You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be worth mentioning the #[SensitiveParameter] they added. It will make it so that the variable doesn't get thrown in stack dumps, or log files internally to PHP. This is in 8.2, and I think it makes it a little more secure.
public function login(string $email, #[SensitiveParameter] string $password)
{
echo 'login';
}
The text was updated successfully, but these errors were encountered:
I think it would be worth mentioning the #[SensitiveParameter] they added. It will make it so that the variable doesn't get thrown in stack dumps, or log files internally to PHP. This is in 8.2, and I think it makes it a little more secure.
public function login(string $email, #[SensitiveParameter] string $password)
{
echo 'login';
}
The text was updated successfully, but these errors were encountered: