Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/Annotation/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/Annotation/SerializedName.php

<?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());
    }
}