Passed
Branch master (61755c)
by Robert
02:34
created

Agent   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 3
dl 0
loc 17
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getLastUpdatedTimeAttribute() 0 3 1
A getCurrentStatusReasonStartTimeAttribute() 0 3 1
A getCurrentStatusStartTimeAttribute() 0 3 1
1
<?php
2
3
namespace LivePersonInc\LiveEngageLaravel\Models;
4
5
use Carbon\Carbon;
6
use Illuminate\Database\Eloquent\Model;
7
8
class Agent extends Model
9
{
10
    protected $guarded = [];
11
    
12
    public function getLastUpdatedTimeAttribute()
13
    {
14
	    return new Carbon($this->attributes['lastUpdatedTime']);
15
    }
16
    
17
    public function getCurrentStatusStartTimeAttribute()
18
    {
19
	    return new Carbon($this->attributes['currentStatusStartTime']);
20
    }
21
    
22
    public function getCurrentStatusReasonStartTimeAttribute()
23
    {
24
	    return new Carbon($this->attributes['currentStatusReasonStartTime']);
25
    }
26
}