<?php declare(strict_types=1); namespace JMS\Serializer\Annotation; /** * @Annotation * @Target({"PROPERTY","METHOD", "ANNOTATION"}) */ #[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_PROPERTY)] final class SerializedName implements SerializerAttribute { use AnnotationUtilsTrait; /** * @var string|null */ public $name = null; public function __construct($values = [], ?string $name = null) { $this->loadAnnotationParameters(get_defined_vars()); } }