Skip to content

Commit

Permalink
Merge branch 'master' into update-symfony-to-7
Browse files Browse the repository at this point in the history
  • Loading branch information
pronata authored Nov 7, 2024
2 parents 2d4d955 + a810742 commit 2880b51
Show file tree
Hide file tree
Showing 4 changed files with 209 additions and 217 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,11 @@ jobs:
strategy:
matrix:
include:
- symfony: '5.4.*'
php: '8.2'
- symfony: '6.2.*'
php: '8.2'
- symfony: '7.1.*'
php: '8.2'
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP Action
uses: shivammathur/setup-php@v2
with:
Expand Down Expand Up @@ -61,15 +57,11 @@ jobs:
strategy:
matrix:
include:
- symfony: '5.4.*'
php: '8.2'
- symfony: '6.2.*'
php: '8.2'
- symfony: '7.1.*'
php: '8.2'
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP Action
uses: shivammathur/setup-php@v2
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function __construct(Opentracing $opentracing)
$this->opentracing = $opentracing;
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output): int
{
$carrier = [];
$this->opentracing->getTracerInstance()->inject($this->opentracing->getTracerInstance()->getActiveSpan()->getContext(), TEXT_MAP, $carrier);
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "auxmoney/opentracing-bundle-core",
"name": "pronata/opentracing-bundle-core",
"description": "Symfony Opentracing bundle to easily enable distributed tracing",
"keywords": [
"auxmoney",
Expand All @@ -17,7 +17,7 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"php": "^8.1",
"ext-json": "*",
"psr/log": "^1.1|^2.0|^3.0",
"psr/http-message": "^1.0",
Expand Down
Loading

0 comments on commit 2880b51

Please sign in to comment.