Skip to content

Commit 39f190a

Browse files
Minor typo fixes for Instana propagator (#376)
* Minor typo fixes for Instana propagator * Reverted composer.json change * Update src/Propagation/Instana/README.md --------- Co-authored-by: Brett McBride <[email protected]>
1 parent eb408c7 commit 39f190a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Propagation/Instana/.phan/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
//
4343
// Note that the **only** effect of choosing `'5.6'` is to infer that functions removed in php 7.0 exist.
4444
// (See `backward_compatibility_checks` for additional options)
45-
'target_php_version' => '8.0',
45+
'target_php_version' => '8.1',
4646

4747
// If enabled, missing properties will be created when
4848
// they are first seen. If false, we'll report an

src/Propagation/Instana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Both of the above have extract and inject methods available to extract and injec
3131
For Baggage propagation, use opentelemetry's MultiTextMapPropagator, and pass the array list of propagators i.e Instana and Baggage propagator as below.
3232

3333
```
34-
$propagator = new MultiTextMapPropagator(InstantPropagator::getInstance(), BaggagePropagator::getInstance());
34+
$propagator = new MultiTextMapPropagator([InstanaPropagator::getInstance(), BaggagePropagator::getInstance()]);
3535
```
3636

3737
## Propagator Details

0 commit comments

Comments
 (0)