Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class Agent extends Model |
||
9 | { |
||
10 | protected $guarded = []; |
||
11 | |||
12 | public function getLastUpdatedTimeAttribute() |
||
15 | } |
||
16 | |||
17 | public function getCurrentStatusStartTimeAttribute() |
||
18 | { |
||
19 | return new Carbon($this->attributes['currentStatusStartTime']); |
||
20 | } |
||
21 | |||
22 | public function getCurrentStatusReasonStartTimeAttribute() |
||
25 | } |
||
26 | } |