| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 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 | |||
| 27 | public function getStatusMinutesAttribute() |
||
| 30 | } |
||
| 31 | } |