Skip to content

Commit 9b75f8d

Browse files
driesvintsgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent efd1f1b commit 9b75f8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/Jobs/UpdateUserIdenticonStatus.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace App\Jobs;
44

5+
use App\Models\User;
6+
use App\Social\GithubUserApi;
57
use Illuminate\Contracts\Queue\ShouldQueue;
68
use Illuminate\Foundation\Bus\Dispatchable;
79
use Illuminate\Foundation\Queue\Queueable;
810
use Illuminate\Queue\InteractsWithQueue;
911
use Illuminate\Queue\SerializesModels;
10-
use App\Models\User;
11-
use App\Social\GithubUserApi;
1212

1313
final class UpdateUserIdenticonStatus implements ShouldQueue
1414
{
@@ -22,4 +22,4 @@ public function handle(GithubUserApi $github): void
2222

2323
$this->user->update(['github_has_identicon' => $hasIdenticon]);
2424
}
25-
}
25+
}

app/Models/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ final class User extends Authenticatable implements MustVerifyEmail
5858
'remember_token',
5959
'bio',
6060
'banned_reason',
61-
'github_has_identicon'
61+
'github_has_identicon',
6262
];
6363

6464
/**

0 commit comments

Comments
 (0)