Settings
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 9
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php
2
3
namespace App\Model\kb;
4
5
use App\BaseModel;
6
7
class Settings extends BaseModel
8
{
9
    /**
10
     * @param $table, $fillable
0 ignored issues
show
Documentation introduced by
The doc-type $table, could not be parsed: Unknown type name "$table" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
11
     */
12
    protected $table = 'kb_settings';
13
    protected $fillable = ['language', 'dateformat', 'company_name', 'website', 'phone', 'address', 'logo', 'timezone',
14
        'background', 'version', 'pagination', 'port', 'host', 'encryption', 'email', 'password', ];
15
}
16