mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-22 07:33:50 +00:00
DX: rector rules upt to PHP 74
This commit is contained in:
@@ -318,9 +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 function ($args) use ($normalizer) {
|
||||
return $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,9 +118,7 @@ final class RelationshipDocGenNormalizerTest extends TestCase
|
||||
{
|
||||
$translatableStringHelper = $this->prophesize(TranslatableStringHelperInterface::class);
|
||||
$translatableStringHelper->localize(Argument::type('array'))->will(
|
||||
static function ($args) {
|
||||
return $args[0][array_keys($args[0])[0]];
|
||||
}
|
||||
static fn($args) => $args[0][array_keys($args[0])[0]]
|
||||
);
|
||||
|
||||
$normalizer = new RelationshipDocGenNormalizer(
|
||||
@@ -130,9 +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 function ($args) use ($normalizer) {
|
||||
return $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