Bank
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
dl 0
loc 6
c 1
b 0
f 0
wmc 0
1
<?php
2
3
namespace CleaniqueCoders\Profile\Models;
4
5
use CleaniqueCoders\Profile\Concerns\HasProfile;
6
use CleaniqueCoders\Traitify\Concerns\InteractsWithUuid;
7
use Illuminate\Database\Eloquent\Model;
8
9
class Bank extends Model
10
{
11
    use HasProfile, InteractsWithUuid;
0 ignored issues
show
Bug introduced by
The trait CleaniqueCoders\Traitify...cerns\InteractsWithUuid requires the property $uuid_column which is not provided by CleaniqueCoders\Profile\Models\Bank.
Loading history...
12
13
    protected $guarded = [
14
        'id',
15
    ];
16
}
17