*/ protected $fillable = [ // phpcs:ignore 'user_id', ]; /** @var array */ protected $casts = [ // phpcs:ignore 'user_id' => 'integer', ]; /** * The relationships that should be touched on save * * @var array */ protected $touches = ['user']; // phpcs:ignore }