Passed
Push — master ( 64ec34...0290f6 )
by Robert
06:09
created

Agent   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 5
dl 0
loc 32
ccs 0
cts 10
cp 0
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getLastUpdatedTimeAttribute() 0 3 1
A getCurrentStatusStartTimeAttribute() 0 3 1
A getUserTypeNameAttribute() 0 3 1
A getStatusMinutesAttribute() 0 3 1
A getCurrentStatusReasonStartTimeAttribute() 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
	protected $userTypes = [
13
		1 => 'Human',
14
		2 => 'Bot'
15
	];
16
	
17
	public function getUserTypeNameAttribute()
18
	{
19
		return $this->userTypes[$this->attributes['userTypeId']];
20
	}
21
	
22
	public function getLastUpdatedTimeAttribute()
23
	{
24
		return new Carbon($this->attributes['lastUpdatedTime']);
25
	}
26
	
27
	public function getCurrentStatusStartTimeAttribute()
28
	{
29
		return new Carbon($this->attributes['currentStatusStartTime']);
30
	}
31
	
32
	public function getCurrentStatusReasonStartTimeAttribute()
33
	{
34
		return new Carbon($this->attributes['currentStatusReasonStartTime']);
35
	}
36
	
37
	public function getStatusMinutesAttribute()
38
	{
39
		return ($this->attributes['currentStatusDuration'] / 1000) / 60;
40
	}
41
}