Apply fixes from StyleCI

This commit is contained in:
Manish Verma
2020-03-17 05:14:38 +00:00
committed by StyleCI Bot
parent 9fe479b141
commit ed3bbd76d7
75 changed files with 1285 additions and 1030 deletions

View File

@@ -9,8 +9,8 @@ class Notification extends BaseModel
protected $table = 'notifications';
protected $fillable = [
'model_id', 'userid_created', 'type_id',
];
'model_id', 'userid_created', 'type_id',
];
public function type()
{

View File

@@ -9,6 +9,6 @@ class NotificationType extends BaseModel
protected $table = 'notification_types';
protected $fillable = [
'message', 'type', 'icon_class',
];
'message', 'type', 'icon_class',
];
}

View File

@@ -9,8 +9,8 @@ class UserNotification extends BaseModel
protected $table = 'user_notification';
protected $fillable = [
'notification_id', 'user_id', 'is_read',
];
'notification_id', 'user_id', 'is_read',
];
public function notification()
{

View File

@@ -9,6 +9,6 @@ class Notification extends BaseModel
protected $table = 'notifications';
protected $fillable = [
'model_id', 'userid_created', 'type_id',
];
'model_id', 'userid_created', 'type_id',
];
}

View File

@@ -9,6 +9,6 @@ class NotificationType extends BaseModel
protected $table = 'notification_types';
protected $fillable = [
'message', 'type', 'icon_class',
];
'message', 'type', 'icon_class',
];
}

View File

@@ -9,6 +9,6 @@ class UserNotification extends BaseModel
protected $table = 'user_notification';
protected $fillable = [
'notification_id', 'user_id', 'is_read',
];
'notification_id', 'user_id', 'is_read',
];
}

View File

@@ -9,6 +9,6 @@ class Rating extends BaseModel
protected $table = 'ratings';
protected $fillable = [
'name', 'display_order', 'allow_modification', 'rating_scale', 'rating_area', 'restrict',
];
'name', 'display_order', 'allow_modification', 'rating_scale', 'rating_area', 'restrict',
];
}

View File

@@ -9,6 +9,6 @@ class RatingRef extends BaseModel
protected $table = 'rating_ref';
protected $fillable = [
'rating_id', 'ticket_id', 'thread_id', 'rating_value',
];
'rating_id', 'ticket_id', 'thread_id', 'rating_value',
];
}

View File

@@ -8,6 +8,6 @@ class Ticket_Collaborator extends BaseModel
{
protected $table = 'ticket_collaborator';
protected $fillable = [
'id', 'isactive', 'ticket_id', 'user_id', 'role', 'updated_at', 'created_at',
];
'id', 'isactive', 'ticket_id', 'user_id', 'role', 'updated_at', 'created_at',
];
}