Passed
Branch master (d207f1)
by Robert
03:30
created

Agent::getStatusMinutesAttribute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
crap 2
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
	
27
	public function getStatusMinutesAttribute()
28
	{
29
		return ($this->attributes['currentStatusDuration'] / 1000) / 60;
30
	}
31
}