1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Annotation; 6 7/** 8 * @Annotation 9 * @Target({"PROPERTY", "METHOD", "ANNOTATION"}) 10 */ 11final class Expose 12{ 13 /** 14 * @var string 15 */ 16 public $if; 17} 18