Skip to content

Commit bad31e1

Browse files
committed
Fix
1 parent 381adb3 commit bad31e1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/reusable-CI-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ jobs:
8383
php-version: '${{ needs.fetch-supported-versions.outputs.php-max }}'
8484
symfony-version: '${{ needs.fetch-supported-versions.outputs.symfony-min }}'
8585
# Fix - behat/gherkin => Avoid issue with behat <-> gherkin packages (See https://github.com/Behat/Gherkin/issues/317)
86-
pkg-extra-constraints: --with 'behat/gherkin:~4.12.0'
86+
# Fix - symfony/yaml => Avoid issue between symfony/yaml and symfony/framework-bundle (not compatible with some versions due to incomplete function signatures)
87+
pkg-extra-constraints: --with 'behat/gherkin:~4.12.0' ${{ ( needs.fetch-supported-versions.outputs.symfony-min == '7.0' && needs.fetch-supported-versions.outputs.php-max == '8.4' ) && '--with "symfony/yaml:~7.0.0"' || '' }}
8788
steps:
8889
- name: Check out code
8990
uses: actions/checkout@v5

src/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Configuration implements ConfigurationInterface
88
{
99
const DEFAULT_ENDPOINT = '/json-rpc';
1010

11-
public function getConfigTreeBuilder()
11+
public function getConfigTreeBuilder(): TreeBuilder
1212
{
1313
$treeBuilder = new TreeBuilder(JsonRpcHttpServerExtension::EXTENSION_IDENTIFIER);
1414

0 commit comments

Comments
 (0)