Fixed typos

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2025-04-15 16:30:54 +01:00
parent c0c5699e38
commit 950472b935

View file

@ -143,7 +143,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo
/** /**
* This sets the name property on the user. It's not a real field in the database * This sets the name property on the user. It's not a real field in the database
* (since we use first_name and last_name, but the Laravel mailable method * (since we use first_name and last_name), but the Laravel mailable method
* uses this to determine the name of the user to send emails to. * uses this to determine the name of the user to send emails to.
* *
* We only have to do this on the User model and no other models because other * We only have to do this on the User model and no other models because other
@ -152,6 +152,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo
*/ */
public $name; public $name;
protected static function boot() protected static function boot()
{ {
parent::boot(); parent::boot();