Skip to content

Commit

Permalink
chore: remove trailing commas
Browse files Browse the repository at this point in the history
Co-authored-by: Alexandre Choura <42672104+PROFeNoM@users.noreply.github.com>
  • Loading branch information
Leiyks and PROFeNoM committed Jan 20, 2025
1 parent 6499429 commit 2cc1113
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/DDTrace/Integrations/Laravel/LaravelIntegration.php
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ function ($This, $scope, $args) use ($integration) {
\datadog\appsec\track_user_login_success_event_automated(
$this->getLoginFromArgs($args[1]),
\method_exists($args[1], 'getAuthIdentifier') ? $args[1]->getAuthIdentifier() : '',
$metadata,
$metadata
);
}
);
Expand Down Expand Up @@ -432,7 +432,7 @@ function ($This, $scope, $args) use ($integration) {
\datadog\appsec\track_user_login_success_event_automated(
$this->getLoginFromArgs($args[0]),
\method_exists($args[0], 'getAuthIdentifier') ? $args[0]->getAuthIdentifier() : '',
$metadata,
$metadata
);
}
);
Expand Down
6 changes: 3 additions & 3 deletions src/DDTrace/Integrations/Symfony/SymfonyIntegration.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function ($This, $scope, $args) {
\datadog\appsec\track_user_login_success_event_automated(
$user,
$user,
$metadata,
$metadata
);
}
);
Expand Down Expand Up @@ -197,7 +197,7 @@ function ($This, $scope, $args) {
\datadog\appsec\track_user_login_success_event_automated(
$user,
$user,
$metadata,
$metadata
);
}
);
Expand Down Expand Up @@ -243,7 +243,7 @@ function ($This, $scope, $args) {
\datadog\appsec\track_user_login_success_event_automated(
$userIdentifier,
$userIdentifier,
$metadata,
$metadata
);
}
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function ($args, $retval) {
\datadog\appsec\track_user_login_success_event_automated(
$username,
$id,
$metadata,
$metadata
);
}
);
Expand Down

0 comments on commit 2cc1113

Please sign in to comment.