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:
Yury Pikhtarev 2025-06-24 01:45:44 +04:00
commit fffb5a7169
No known key found for this signature in database
10 changed files with 10 additions and 10 deletions

View file

@ -11,7 +11,7 @@ use Laravel\Sanctum\HasApiTokens;
class User extends Authenticatable class User extends Authenticatable
{ {
/** @use HasFactory<\Database\Factories\UserFactory> */ /** @use HasFactory<\Database\Factories\UserFactory> */
use HasFactory, Notifiable, HasApiTokens; use HasApiTokens, HasFactory, Notifiable;
/** /**
* The attributes that are mass assignable. * The attributes that are mass assignable.