Issues (38)

src/Models/Transfer.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Transfer
4
 *
5
 * @package LivePersonInc\LiveEngageLaravel\Models
6
 */
7
8
namespace LivePersonInc\LiveEngageLaravel\Models;
9
10
use Carbon\Carbon;
11
use Illuminate\Database\Eloquent\Model;
12
13
class Transfer extends Model
14
{
15
	protected $guarded = [];
16
    
17
    public function getTimeAttribute()
18
    {
19
        return new Carbon(intval($this->timeL/1000));
0 ignored issues
show
The property timeL does not seem to exist on LivePersonInc\LiveEngageLaravel\Models\Transfer. Are you sure there is no database migration missing?

Checks if undeclared accessed properties appear in database migrations and if the creating migration is correct.

Loading history...
20
    }
21
}
22