From 1d51b61821cdfb80e468f6629201d647f5c12271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Fri, 26 Feb 2021 17:31:02 +0300 Subject: [PATCH] formatting --- app/Abstracts/Model.php | 4 +--- app/Models/Common/Company.php | 4 +--- app/Models/Setting/Setting.php | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) 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;