mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 23:23:51 +00:00
DX: fix cs
This commit is contained in:
@@ -318,7 +318,7 @@ final class PersonDocGenNormalizerTest extends KernelTestCase
|
||||
$normalizerManager = $this->prophesize(NormalizerInterface::class);
|
||||
$normalizerManager->supportsNormalization(Argument::any(), 'docgen', Argument::any())->willReturn(true);
|
||||
$normalizerManager->normalize(Argument::type(Person::class), 'docgen', Argument::any())
|
||||
->will(static fn($args) => $normalizer->normalize($args[0], $args[1], $args[2]));
|
||||
->will(static fn ($args) => $normalizer->normalize($args[0], $args[1], $args[2]));
|
||||
$normalizerManager->normalize(Argument::any(), 'docgen', Argument::any())->will(
|
||||
static function ($args) {
|
||||
if (is_iterable($args[0])) {
|
||||
|
@@ -118,7 +118,7 @@ final class RelationshipDocGenNormalizerTest extends TestCase
|
||||
{
|
||||
$translatableStringHelper = $this->prophesize(TranslatableStringHelperInterface::class);
|
||||
$translatableStringHelper->localize(Argument::type('array'))->will(
|
||||
static fn($args) => $args[0][array_keys($args[0])[0]]
|
||||
static fn ($args) => $args[0][array_keys($args[0])[0]]
|
||||
);
|
||||
|
||||
$normalizer = new RelationshipDocGenNormalizer(
|
||||
@@ -128,7 +128,7 @@ final class RelationshipDocGenNormalizerTest extends TestCase
|
||||
$normalizerManager = $this->prophesize(NormalizerInterface::class);
|
||||
$normalizerManager->supportsNormalization(Argument::any(), 'docgen', Argument::any())->willReturn(true);
|
||||
$normalizerManager->normalize(Argument::type(Relationship::class), 'docgen', Argument::any())
|
||||
->will(static fn($args) => $normalizer->normalize($args[0], $args[1], $args[2]));
|
||||
->will(static fn ($args) => $normalizer->normalize($args[0], $args[1], $args[2]));
|
||||
$normalizerManager->normalize(Argument::any(), 'docgen', Argument::any())->will(
|
||||
static function ($args) {
|
||||
if (null === $args[0]) {
|
||||
|
Reference in New Issue
Block a user