Skip to content

Commit fb3c63d

Browse files
authored
Compatibility with Symfony 6.x (#34)
* Compatibility with Symfony 6.x * Add missing method getLocale on StubTranslator * Handle new way to access container in WorkflowControllerTrait * Switched automated tests to Symfony 6.1
1 parent ea912e9 commit fb3c63d

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

.github/workflows/tests.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ jobs:
1919
symfony-version: 4.4.*
2020
sonata-version: ^4.0
2121
- php-version: 8.0
22-
symfony-version: 5.3.*
22+
symfony-version: 5.4.*
23+
sonata-version: ^4.0
24+
- php-version: 8.1
25+
symfony-version: 6.1.*
2326
sonata-version: ^4.0
2427

2528
steps:
@@ -48,8 +51,8 @@ jobs:
4851
strategy:
4952
matrix:
5053
include:
51-
- php-version: 8.0
52-
symfony-version: 5.3.*
54+
- php-version: 8.1
55+
symfony-version: 6.1.*
5356

5457
steps:
5558
- name: "Checkout"
@@ -75,8 +78,8 @@ jobs:
7578
strategy:
7679
matrix:
7780
include:
78-
- php-version: 8.0
79-
symfony-version: 5.3.*
81+
- php-version: 8.1
82+
symfony-version: 6.1.*
8083

8184
steps:
8285
- name: "Checkout"

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"require": {
2828
"php": "^7.4|^8.0",
2929
"sonata-project/admin-bundle": "^4.0",
30-
"symfony/workflow": "^4.4|^5.0"
30+
"symfony/workflow": "^4.4|^5.0|^6.0"
3131
},
3232
"require-dev": {
3333
"phpunit/phpunit": "^9.5",

src/Controller/WorkflowControllerTrait.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,10 @@ protected function getWorkflow(object $object): Workflow
138138
try {
139139
if (method_exists($this, 'get')) {
140140
$registry = $this->get('workflow.registry');
141-
} else {
141+
} elseif (method_exists($this, 'getContainer')) {
142142
$registry = $this->getContainer()->get('workflow.registry');
143+
} else {
144+
$registry = $this->container->get('workflow.registry');
143145
}
144146
} catch (ServiceNotFoundException $exception) {
145147
throw new \LogicException(

tests/Fixtures/StubTranslator.php

+5
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@ public function trans($id, array $parameters = [], $domain = null, $locale = nul
1212
{
1313
return '[trans]' . strtr($id, $parameters) . '[/trans]';
1414
}
15+
16+
public function getLocale(): string
17+
{
18+
return 'fa_KE';
19+
}
1520
}

0 commit comments

Comments
 (0)