40 lines
1011 B
PHP
40 lines
1011 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\Serializer\Annotation;
|
|
|
|
use Symfony\Component\Serializer\Exception\InvalidArgumentException;
|
|
|
|
/**
|
|
* Annotation class for @SerializedName().
|
|
*
|
|
* @Annotation
|
|
* @NamedArgumentConstructor
|
|
* @Target({"PROPERTY", "METHOD"})
|
|
*
|
|
* @author Fabien Bourigault <bourigaultfabien@gmail.com>
|
|
*/
|
|
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::TARGET_PROPERTY)]
|
|
final class SerializedName
|
|
{
|
|
public function __construct(private string $serializedName)
|
|
{
|
|
if (empty($serializedName)) {
|
|
throw new InvalidArgumentException(sprintf('Parameter of annotation "%s" must be a non-empty string.', static::class));
|
|
}
|
|
}
|
|
|
|
public function getSerializedName(): string
|
|
{
|
|
return $this->serializedName;
|
|
}
|
|
}
|