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