Completed
Push — master ( 3a0a7f...ae390a )
by Emmanuel
01:22
created

HasConfigModel::bootHasUuid()   A

Complexity

Conditions 3
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 3
nc 1
nop 0
1
<?php
2
3
4
namespace RexlManu\LaravelTickets\Traits;
5
6
7
trait HasConfigModel
8
{
9
10
    public function getKeyType()
11
    {
12
        return 'string';
13
    }
14
15
    public function isIncrementing()
16
    {
17
        return config('laravel-tickets.model.incrementing');
18
    }
19
}
20