diff --git a/app/Abstracts/Model.php b/app/Abstracts/Model.php index fe9b12678..4e08b2281 100644 --- a/app/Abstracts/Model.php +++ b/app/Abstracts/Model.php @@ -21,9 +21,7 @@ abstract class Model extends Eloquent 'enabled' => 'boolean', ]; - public $allAttributes = [ - // - ]; + public $allAttributes = []; /** * Create a new Eloquent model instance. diff --git a/app/Models/Common/Company.php b/app/Models/Common/Company.php index 1224d24a2..c5d0452d7 100644 --- a/app/Models/Common/Company.php +++ b/app/Models/Common/Company.php @@ -28,9 +28,7 @@ class Company extends Eloquent 'enabled' => 'boolean', ]; - public $allAttributes = [ - // - ]; + public $allAttributes = []; /** * Sortable columns. diff --git a/app/Models/Setting/Setting.php b/app/Models/Setting/Setting.php index b908a93c9..67ecd359b 100644 --- a/app/Models/Setting/Setting.php +++ b/app/Models/Setting/Setting.php @@ -20,9 +20,7 @@ class Setting extends Eloquent */ protected $fillable = ['company_id', 'key', 'value']; - public $allAttributes = [ - // - ]; + public $allAttributes = []; public $timestamps = false;