mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-29 11:03:50 +00:00
apply rector rules: php up to php82
This commit is contained in:
@@ -19,7 +19,7 @@ use function is_array;
|
||||
|
||||
class NormalizeNullValueHelper
|
||||
{
|
||||
public function __construct(private NormalizerInterface $normalizer, private ?string $discriminatorType = null, private ?string $discriminatorValue = null)
|
||||
public function __construct(private readonly NormalizerInterface $normalizer, private ?string $discriminatorType = null, private readonly ?string $discriminatorValue = null)
|
||||
{
|
||||
}
|
||||
|
||||
|
@@ -41,11 +41,11 @@ class DocGenObjectNormalizer implements NormalizerAwareInterface, NormalizerInte
|
||||
{
|
||||
use NormalizerAwareTrait;
|
||||
|
||||
private PropertyAccessor $propertyAccess;
|
||||
private readonly PropertyAccessor $propertyAccess;
|
||||
|
||||
public function __construct(
|
||||
private ClassMetadataFactoryInterface $classMetadataFactory,
|
||||
private TranslatableStringHelperInterface $translatableStringHelper
|
||||
private readonly ClassMetadataFactoryInterface $classMetadataFactory,
|
||||
private readonly TranslatableStringHelperInterface $translatableStringHelper
|
||||
) {
|
||||
$this->propertyAccess = PropertyAccess::createPropertyAccessor();
|
||||
}
|
||||
|
Reference in New Issue
Block a user