mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
Use PSR-12 code style
This commit is contained in:
@@ -274,7 +274,7 @@ class UserRepository implements UserRepositoryInterface
|
||||
{
|
||||
$now = Carbon::now();
|
||||
$now->addDays(2);
|
||||
$invitee = new InvitedUser;
|
||||
$invitee = new InvitedUser();
|
||||
$invitee->user()->associate($user);
|
||||
$invitee->invite_code = Str::random(64);
|
||||
$invitee->email = $email;
|
||||
@@ -353,7 +353,6 @@ class UserRepository implements UserRepositoryInterface
|
||||
$user->blocked = false;
|
||||
$user->blocked_code = '';
|
||||
$user->save();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user