We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b98f7b commit 90c648eCopy full SHA for 90c648e
docs/platforms/php/guides/laravel/enriching-events/identify-user/index.mdx
@@ -16,7 +16,7 @@ public function boot(): void
16
\Illuminate\Support\Facades\Event::listen(function (\Illuminate\Auth\Events\Authenticated $event) {
17
$user = $event->user;
18
19
- \Sentry\Laravel\Integration::configureScope(static function (Scope $scope) use ($user): void {
+ \Sentry\Laravel\Integration::configureScope(static function (\Sentry\State\Scope $scope) use ($user): void {
20
$scope->setUser([
21
'id' => $user->id,
22
'name' => $user->name,
0 commit comments