1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Annotation; 6 7/** 8 * Controls the order of properties in a class. 9 * 10 * @Annotation 11 * @Target("CLASS") 12 * 13 * @author Johannes M. Schmitt <schmittjoh@gmail.com> 14 */ 15final class AccessorOrder 16{ 17 /** 18 * @Required 19 * @var string 20 */ 21 public $order; 22 23 /** 24 * @var array<string> 25 */ 26 public $custom = []; 27} 28