removed extras #1433

This commit is contained in:
denisdulici 2020-05-02 14:41:12 +03:00
parent ba6a662793
commit 8120e3f0e3

View File

@ -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();
}
}