Skip to content

Commit 483c25b

Browse files
committed
Fix unit tests
1 parent 23e0a4a commit 483c25b

File tree

8 files changed

+419
-100
lines changed

8 files changed

+419
-100
lines changed

app/User.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@
77
use Illuminate\Notifications\Notifiable;
88
use Illuminate\Support\Facades\Hash;
99
use Illuminate\Support\Facades\Log;
10+
use Illuminate\Database\Eloquent\Factories\HasFactory;
1011

1112
class User extends Authenticatable
1213
{
13-
use Notifiable;
14+
use HasFactory, Notifiable;
1415

1516
protected $table = 'user';
1617

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"license": "MIT",
77
"require": {
88
"php": "^8.0.2",
9+
"doctrine/dbal": "^3.6",
910
"flynsarmy/csv-seeder": "^1.0",
1011
"guzzlehttp/guzzle": "^7.2",
1112
"jenssegers/mongodb": "^3.6",

0 commit comments

Comments
 (0)