Skip to content

Commit e559d3d

Browse files
tanhongitgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 150592a commit e559d3d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/HasLike.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public function likes(): MorphMany
3535
return $this->morphMany(Like::class, 'model');
3636
}
3737

38-
3938
/**
4039
* The scope locale for select likes relationship.
4140
*

src/Models/Like.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ class Like extends Model
1111
'user_id',
1212
'model_id',
1313
'model_type',
14-
'type'
14+
'type',
1515
];
1616

1717
protected $casts = [
1818
'model_type' => 'string',
19-
'type' => LikeTypeEnum::class
19+
'type' => LikeTypeEnum::class,
2020
];
2121
}

0 commit comments

Comments
 (0)