* * 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 */ #[\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; } }