Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 747bc77

Browse files
committed
fix: cs
1 parent f0b6491 commit 747bc77

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: shivammathur/setup-php@v2
1616
- name: Install dependencies
1717
run: composer install --ignore-platform-reqs
18-
- name: PHPCSFixer check
18+
- name: Style check
1919
run: composer check-style
2020
phpunit:
2121
strategy:

src/Http/Middleware/TraceRequest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function handle(Request $request, Closure $next)
2222
// Check if request path should be ignored
2323
if (HttpAttributesHelper::shouldIgnoreRequest($request)) {
2424
Measure::disable();
25+
2526
return $next($request);
2627
}
2728

src/Watchers/QueryWatcher.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
use Illuminate\Contracts\Foundation\Application;
88
use Illuminate\Database\Events\QueryExecuted;
9-
use Illuminate\Support\Facades\Log;
109
use Illuminate\Support\Str;
1110
use OpenTelemetry\API\Trace\SpanKind;
1211
use OpenTelemetry\Context\Context;

0 commit comments

Comments
 (0)