According to the [docs](https://docs.rollbar.com/docs/php-configuration-reference), `max_items` is "Maximum number of items sent in a single app request/response cycle". The [RollbarServiceProvider](https://github.com/rollbar/rollbar-php-laravel/blob/master/src/RollbarServiceProvider.php#L23) defines `RollbarLogger` as a [singleton](https://laravel.com/docs/9.x/container#binding-a-singleton), in which the same instance will be returned on subsequent calls into the container. Given the above, wouldn't be more appropriate to use [scoped](https://laravel.com/docs/9.x/container#binding-scoped) instead? As it would do exactly what the Rollbar docs state for max_items config?