File tree Expand file tree Collapse file tree 3 files changed +2
-74
lines changed Expand file tree Collapse file tree 3 files changed +2
-74
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Zipkin PHP
2
2
3
- [ ![ Build Status] ( https://travis-ci.org/openzipkin/zipkin-php.svg?branch=master )] ( https://travis-ci.org/openzipkin/zipkin-php )
4
- [ ![ Build status] ( https://ci.appveyor.com/api/projects/status/f02q896uv1m3crg1?svg=true )] ( https://ci.appveyor.com/project/jcchavezs/zipkin-php )
5
3
![ CI] ( https://github.com/openzipkin/zipkin-php/workflows/CI/badge.svg )
6
4
[ ![ Latest Stable Version] ( https://poser.pugx.org/openzipkin/zipkin/v/stable )] ( https://packagist.org/packages/openzipkin/zipkin )
7
5
[ ![ Coverage Status] ( https://coveralls.io/repos/github/openzipkin/zipkin-php/badge.svg )] ( https://coveralls.io/github/openzipkin/zipkin-php )
@@ -262,11 +260,11 @@ class TraceClient implements ClientInterface
262
260
$span = $this->tracer->nextSpan();
263
261
$span->setKind(Zipkin\Kind\CLIENT);
264
262
$span->tag(Tags\HTTP_PATH, $uri);
265
-
263
+
266
264
try {
267
265
$response = $this->client->request($method, $uri, $options);
268
266
$span->tag(Tags\HTTP_STATUS_CODE, $response->getStatusCode());
269
-
267
+
270
268
return $response;
271
269
catch (Throwable $e) {
272
270
$span->setError($e);
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments