Commit 6f2e337f authored by Vipul Basapati's avatar Vipul Basapati Committed by StyleCI Bot

Apply fixes from StyleCI

parent b950b334
......@@ -12,7 +12,6 @@ use App\Events\Backend\Access\User\UserRestored;
use App\Events\Backend\Access\User\UserUpdated;
use App\Exceptions\GeneralException;
use App\Models\Access\User\User;
use App\Notifications\Frontend\Auth\UserNeedsConfirmation;
use App\Repositories\Backend\Access\Role\RoleRepository;
use App\Repositories\BaseRepository;
use Illuminate\Support\Facades\DB;
......@@ -123,10 +122,10 @@ class UserRepository extends BaseRepository
// Send email to the user
$options = [
'data' => $user->toArray(),
'email_template_type' => $email_type
'email_template_type' => $email_type,
];
createNotification("", 1, 2, $options);
createNotification('', 1, 2, $options);
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment