Skip to content

Commit e92b82a

Browse files
Fix missing behat transliterator package (#1064)
| Q | A | --------------- | ----- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Related tickets | | License | MIT
2 parents 5144bf3 + a73efe4 commit e92b82a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
],
2727
"require": {
2828
"php": "^8.1",
29+
"behat/transliterator": "^1.2",
2930
"babdev/pagerfanta-bundle": "^4.4",
3031
"doctrine/annotations": "^2.0",
3132
"doctrine/collections": "^2.2",

psalm.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
<DeprecatedClass>
4747
<errorLevel type="info">
4848
<referencedClass name="Doctrine\ORM\Event\LifecycleEventArgs" /> <!-- deprecated in doctrine/orm 2.14 -->
49+
<referencedClass name="Gedmo\Sluggable\Util\Urlizer" /> <!-- deprecated in gedmo/doctrine-extensions 3.21 -->
4950
</errorLevel>
5051
<errorLevel type="suppress">
5152
<referencedClass name="Sylius\Component\Resource\Exception\VariantWithNoOptionsValuesException" />

src/Component/src/Metadata/ResourceMetadata.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public function __construct(
2727
private ?string $pluralName = null,
2828
private ?string $applicationName = null,
2929
private ?string $identifier = null,
30-
protected ?array $normalizationContext = null,
31-
protected ?array $denormalizationContext = null,
32-
protected ?array $validationContext = null,
30+
private ?array $normalizationContext = null,
31+
private ?array $denormalizationContext = null,
32+
private ?array $validationContext = null,
3333
private ?string $class = null,
3434
private string|false|null $driver = null,
3535
private ?array $vars = null,

0 commit comments

Comments
 (0)