Commit ec6fe3c4 authored by Viral Solani's avatar Viral Solani Committed by StyleCI Bot

Apply fixes from StyleCI

parent cbd80804
...@@ -88,7 +88,6 @@ class UserRepository extends BaseRepository ...@@ -88,7 +88,6 @@ class UserRepository extends BaseRepository
*/ */
public function create(array $data, $provider = false) public function create(array $data, $provider = false)
{ {
$user = self::MODEL; $user = self::MODEL;
$user = new $user(); $user = new $user();
$user->first_name = $data['first_name']; $user->first_name = $data['first_name'];
......
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
namespace Tests\Feature; namespace Tests\Feature;
use Tests\BrowserKitTestCase; use App\Events\Frontend\Auth\UserRegistered;
use App\Models\Access\User\User; use App\Models\Access\User\User;
use App\Notifications\Frontend\Auth\UserNeedsConfirmation;
use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Event;
use App\Events\Frontend\Auth\UserRegistered;
use Illuminate\Support\Facades\Notification; use Illuminate\Support\Facades\Notification;
use App\Notifications\Frontend\Auth\UserNeedsConfirmation; use Tests\BrowserKitTestCase;
class RegistrationTest extends BrowserKitTestCase class RegistrationTest extends BrowserKitTestCase
{ {
......
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