ActiveRecord supports providing a class as the argument to a callback: https://guides.rubyonrails.org/active_record_callbacks.html#callback-classes ```rb class PictureFile < ApplicationRecord after_destroy PictureFileCallbacks end ``` But the types for ActiveRecord classes only allow a nilable Symbol as the first argument to callbacks: https://github.com/sorbet/sorbet-typed/blob/9298edd8cbf66d6881ff1b0c095168d0f1fdfc2a/lib/activerecord/all/activerecord.rbi#L1070