for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Transfer
*
* @package LivePersonInc\LiveEngageLaravel\Models
*/
namespace LivePersonInc\LiveEngageLaravel\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
class Transfer extends Model
{
protected $guarded = [];
public function getTimeAttribute()
return new Carbon(intval($this->timeL/1000));
timeL
LivePersonInc\LiveEngageLaravel\Models\Transfer
Checks if undeclared accessed properties appear in database migrations and if the creating migration is correct.
}
Checks if undeclared accessed properties appear in database migrations and if the creating migration is correct.