Skip to content

Commit 122e8f2

Browse files
committed
Remove unusage traits
1 parent 48d3577 commit 122e8f2

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

app/Models/Achievement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class Achievement extends Model
1313
{
14-
use HasFactory, HasUuids;
14+
use HasUuids;
1515

1616
/**
1717
* The attributes that are mass assignable.

app/Models/AntiSpamRecord.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class AntiSpamRecord extends Model
1010
{
11-
use HasFactory, HasUuids;
11+
use HasUuids;
1212

1313
protected $fillable = [
1414
'telegram_id',

app/Models/Challenge.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class Challenge extends Model
1616
{
17-
use AsSource, Chartable, Filterable, HasFactory, LogsActivityFillable;
17+
use AsSource, Chartable, Filterable, LogsActivityFillable;
1818

1919
/**
2020
* The attributes that are mass assignable.

app/Models/ChallengeApplication.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class ChallengeApplication extends Model
1515
{
16-
use AsSource, Chartable, Filterable, HasFactory, HasUuids;
16+
use AsSource, Chartable, Filterable, HasUuids;
1717

1818
/**
1919
* The attributes that are mass assignable.

app/Models/Comment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class Comment extends Model
1818
{
19-
use Approvable, Chartable, HasAuthor, HasFactory, Likeable, SoftDeletes;
19+
use Approvable, Chartable, HasAuthor, Likeable, SoftDeletes;
2020

2121
/**
2222
* The attributes that are mass assignable.

app/Models/Document.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class Document extends Model
1111
{
12-
use HasFactory, HasUuids;
12+
use HasUuids;
1313

1414
/**
1515
* The attributes that are mass assignable.

app/Models/DocumentationSection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class DocumentationSection extends Model
1212
{
13-
use HasFactory, HasUuids, Searchable;
13+
use HasUuids, Searchable;
1414

1515
/**
1616
* The attributes that are mass assignable.

app/Models/IdeaKey.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class IdeaKey extends Model
1313
{
14-
use Chartable, HasAuthor, HasFactory, HasUuids;
14+
use Chartable, HasAuthor, HasUuids;
1515

1616
/**
1717
* Get the idea request associated with the idea key.

app/Models/IdeaRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class IdeaRequest extends Model
1313
{
14-
use AsSource, Chartable, Filterable, HasAuthor, HasFactory;
14+
use AsSource, Chartable, Filterable, HasAuthor;
1515

1616
/**
1717
* The attributes that are mass assignable.

app/Models/Meet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class Meet extends Model
1616
{
17-
use Approvable, AsSource, Chartable, Filterable, HasAuthor, HasFactory, LogsActivityFillable;
17+
use Approvable, AsSource, Chartable, Filterable, HasAuthor, LogsActivityFillable;
1818

1919
/**
2020
* The attributes that are mass assignable.

0 commit comments

Comments
 (0)