mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-24 07:05:47 -07:00
refactor: reorder traits in User model and add newlines in test files
- Reordered the traits in the User model for better organization. - Added missing newlines at the end of several test files to comply with coding standards. These changes improve code readability and maintainability across the project.
This commit is contained in:
parent
757a6b3e91
commit
fffb5a7169
10 changed files with 10 additions and 10 deletions
|
@ -11,7 +11,7 @@ use Laravel\Sanctum\HasApiTokens;
|
|||
class User extends Authenticatable
|
||||
{
|
||||
/** @use HasFactory<\Database\Factories\UserFactory> */
|
||||
use HasFactory, Notifiable, HasApiTokens;
|
||||
use HasApiTokens, HasFactory, Notifiable;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue