default attributes */ protected $attributes = [ // phpcs:ignore 'access_token' => null, 'refresh_token' => null, 'expires_at' => null, ]; /** @var bool Enable timestamps */ public $timestamps = true; // phpcs:ignore /** @var array */ protected $casts = [ // phpcs:ignore 'user_id' => 'integer', 'expires_at' => 'datetime', ]; /** @var array */ protected $fillable = [ // phpcs:ignore 'provider', 'identifier', 'access_token', 'refresh_token', 'expires_at', ]; }