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; ...@@ -12,7 +12,6 @@ use App\Events\Backend\Access\User\UserRestored;
use App\Events\Backend\Access\User\UserUpdated; use App\Events\Backend\Access\User\UserUpdated;
use App\Exceptions\GeneralException; use App\Exceptions\GeneralException;
use App\Models\Access\User\User; use App\Models\Access\User\User;
use App\Notifications\Frontend\Auth\UserNeedsConfirmation;
use App\Repositories\Backend\Access\Role\RoleRepository; use App\Repositories\Backend\Access\Role\RoleRepository;
use App\Repositories\BaseRepository; use App\Repositories\BaseRepository;
use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\DB;
...@@ -123,10 +122,10 @@ class UserRepository extends BaseRepository ...@@ -123,10 +122,10 @@ class UserRepository extends BaseRepository
// Send email to the user // Send email to the user
$options = [ $options = [
'data' => $user->toArray(), 'data' => $user->toArray(),
'email_template_type' => $email_type 'email_template_type' => $email_type,
]; ];
createNotification("", 1, 2, $options); createNotification('', 1, 2, $options);
return true; 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