fixed formatting

This commit is contained in:
Jozef Bonnar 2022-08-10 19:14:07 +01:00 committed by GitHub
parent 266057b666
commit 62700a91f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -260,10 +260,10 @@ class User extends Authenticatable implements MustVerifyEmail
return $status;
}
public function verifyEmail()
{
$this->forceFill([
'email_verified_at' => now(),
])->save();
}
public function verifyEmail()
{
$this->forceFill([
'email_verified_at' => now(),
])->save();
}
}