Skip to content

Commit c3ecfb8

Browse files
fix linting error
1 parent 5526599 commit c3ecfb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Instrumentation/Symfony/src/SymfonyInstrumentation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public static function register(): void
104104
$span->recordException($exception, [
105105
TraceAttributes::EXCEPTION_ESCAPED => true,
106106
]);
107-
if(null !== $response && $response->getStatusCode() >= Response::HTTP_INTERNAL_SERVER_ERROR) {
107+
if (null !== $response && $response->getStatusCode() >= Response::HTTP_INTERNAL_SERVER_ERROR) {
108108
$span->setStatus(StatusCode::STATUS_ERROR, $exception->getMessage());
109109
}
110110
}

0 commit comments

Comments
 (0)