Apply fixes from StyleCI
This commit is contained in:

committed by
StyleCI Bot

parent
9fe479b141
commit
ed3bbd76d7
@@ -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()
|
||||
{
|
||||
|
@@ -9,6 +9,6 @@ class NotificationType extends BaseModel
|
||||
protected $table = 'notification_types';
|
||||
protected $fillable = [
|
||||
|
||||
'message', 'type', 'icon_class',
|
||||
];
|
||||
'message', 'type', 'icon_class',
|
||||
];
|
||||
}
|
||||
|
@@ -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()
|
||||
{
|
||||
|
@@ -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',
|
||||
];
|
||||
}
|
||||
|
@@ -9,6 +9,6 @@ class NotificationType extends BaseModel
|
||||
protected $table = 'notification_types';
|
||||
protected $fillable = [
|
||||
|
||||
'message', 'type', 'icon_class',
|
||||
];
|
||||
'message', 'type', 'icon_class',
|
||||
];
|
||||
}
|
||||
|
@@ -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',
|
||||
];
|
||||
}
|
||||
|
@@ -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',
|
||||
];
|
||||
}
|
||||
|
@@ -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',
|
||||
];
|
||||
}
|
||||
|
@@ -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',
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user