From 8120e3f0e34e7cfa5ccadb396d59e8cd917b827a Mon Sep 17 00:00:00 2001 From: denisdulici Date: Sat, 2 May 2020 14:41:12 +0300 Subject: [PATCH] removed extras #1433 --- app/Models/Setting/Setting.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/app/Models/Setting/Setting.php b/app/Models/Setting/Setting.php index d62ebb931..12961c640 100644 --- a/app/Models/Setting/Setting.php +++ b/app/Models/Setting/Setting.php @@ -58,14 +58,4 @@ class Setting extends Eloquent { return $query->where($this->table . '.company_id', '=', $company_id); } - - public function isTenantable() - { - return (isset($this->tenantable) && ($this->tenantable === true)); - } - - public function isNotTenantable() - { - return !$this->isTenantable(); - } }