JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrFILE ON : __5cbf89/index.php gilour
<?php namespace Sentry\Laravel\Integration; use Sentry\Event; use Sentry\EventHint; use Sentry\SentrySdk; use Sentry\State\Scope; use Sentry\Integration\IntegrationInterface; class ExceptionContextIntegration implements IntegrationInterface { public function setupOnce(): void { Scope::addGlobalEventProcessor(static function (Event $event, ?EventHint $hint = null): Event { $self = SentrySdk::getCurrentHub()->getIntegration(self::class); if (!$self instanceof self) { return $event; } if ($hint === null || $hint->exception === null) { return $event; } if (!method_exists($hint->exception, 'context')) { return $event; } $context = $hint->exception->context(); if (is_array($context)) { $event->setExtra(['exception_context' => $context]); } return $event; }); } }