Skip to content

Commit

Permalink
Code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
dsbilling committed Dec 9, 2023
1 parent c69e96e commit 36cdbef
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/Models/Certification.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
class Certification extends Model
{
use HasFactory;
use SoftDeletes;
use HasTags;
use SoftDeletes;

protected $fillable = [
'name',
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Course.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
class Course extends Model
{
use HasFactory;
use SoftDeletes;
use HasTags;
use SoftDeletes;

protected $fillable = [
'name',
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Experience.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
class Experience extends Model
{
use HasFactory;
use SoftDeletes;
use HasTags;
use SoftDeletes;

protected $fillable = [
'title',
Expand Down
4 changes: 2 additions & 2 deletions app/Models/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
class Post extends Model implements Viewable
{
use HasFactory;
use InteractsWithViews;
use SoftDeletes;
use HasTags;
use HasUserGuestLike;
use InteractsWithViews;
use SoftDeletes;

protected $removeViewsOnDelete = true;

Expand Down
4 changes: 2 additions & 2 deletions app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class User extends Authenticatable implements MustVerifyEmail
use HasApiTokens;
use HasFactory;
use HasProfilePhoto;
use Notifiable;
use TwoFactorAuthenticatable;
use HasRoles;
use Notifiable;
use Notifiable;
use TwoFactorAuthenticatable;

/**
* The attributes that are mass assignable.
Expand Down

0 comments on commit 36cdbef

Please sign in to comment.