Completed
Push — master ( 8f2e40...7dcc71 )
by wen
02:45
created

ActionLog   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
4
namespace Sco\ActionLog\Models;
5
6
7
use Illuminate\Database\Eloquent\Model;
8
9
class ActionLog extends Model
10
{
11
    public function __construct(array $attributes = [])
12
    {
13
        parent::__construct($attributes);
14
        $this->table = config('actionlog.table_name');
15
    }
16
}
17