### How do you use Sentry? Self-hosted / on-premises ### SDK version 4.4.1 ### Steps to reproduce 1. Create any artisan command with any database queries, for example: ```php // App\Console\Commands\TestCommand protected $signature = 'app:test-command'; public function handle() { \DB::table('test')->insert([ 'created_at'=>now(), ]); } ``` 2. Execute the command: ``` php artisan app:test-command ``` ### Expected result Transaction with performance data is sent to Sentry ### Actual result No data is sent to Sentry