diff --git a/app/Console/Commands/Setup.php b/app/Console/Commands/Setup.php index facb3ff..94e2090 100644 --- a/app/Console/Commands/Setup.php +++ b/app/Console/Commands/Setup.php @@ -43,7 +43,7 @@ public function handle(): void $this->artisan('✓ Clear config cache', 'config:clear'); $this->artisan('✓ Resetting route cache', 'route:cache'); $this->artisan('✓ Resetting view cache', 'view:clear'); - // @codeCoverageIgnoreEnd + // @codeCoverageIgnoreEnd } else { $this->artisan('✓ Clear config cache', 'config:clear'); $this->artisan('✓ Clear route cache', 'route:clear'); diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 496f439..f2c1a3c 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -25,6 +25,7 @@ protected function commands() * * @param \Illuminate\Console\Scheduling\Schedule $schedule * @return void + * * @codeCoverageIgnore */ protected function schedule(Schedule $schedule) diff --git a/config/sentry.php b/config/sentry.php index 37fc3cd..0ed46f3 100644 --- a/config/sentry.php +++ b/config/sentry.php @@ -50,7 +50,7 @@ // @see: https://docs.sentry.io/platforms/php/configuration/options/#send-default-pii 'send_default_pii' => env('SENTRY_DEFAULT_PII', false), - 'traces_sample_rate' => (float) (env('SENTRY_TRACES_SAMPLE_RATE', 0.0)), + 'traces_sample_rate' => (float) env('SENTRY_TRACES_SAMPLE_RATE', 0.0), 'controllers_base_namespace' => env('SENTRY_CONTROLLERS_BASE_NAMESPACE', 'App\\Http\\Controllers'),