File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace App \Jobs ;
4
4
5
+ use App \Models \User ;
6
+ use App \Social \GithubUserApi ;
5
7
use Illuminate \Contracts \Queue \ShouldQueue ;
6
8
use Illuminate \Foundation \Bus \Dispatchable ;
7
9
use Illuminate \Foundation \Queue \Queueable ;
8
10
use Illuminate \Queue \InteractsWithQueue ;
9
11
use Illuminate \Queue \SerializesModels ;
10
- use App \Models \User ;
11
- use App \Social \GithubUserApi ;
12
12
13
13
final class UpdateUserIdenticonStatus implements ShouldQueue
14
14
{
@@ -22,4 +22,4 @@ public function handle(GithubUserApi $github): void
22
22
23
23
$ this ->user ->update (['github_has_identicon ' => $ hasIdenticon ]);
24
24
}
25
- }
25
+ }
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ final class User extends Authenticatable implements MustVerifyEmail
58
58
'remember_token ' ,
59
59
'bio ' ,
60
60
'banned_reason ' ,
61
- 'github_has_identicon '
61
+ 'github_has_identicon ' ,
62
62
];
63
63
64
64
/**
You can’t perform that action at this time.
0 commit comments