1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Annotation; 6 7/** 8 * This annotation can be defined on methods which are called after the 9 * deserialization of the object is complete. 10 * 11 * These methods do not necessarily have to be public. 12 * 13 * @Annotation 14 * @Target("METHOD") 15 * 16 * @author Johannes M. Schmitt <schmittjoh@gmail.com> 17 */ 18final class PostDeserialize 19{ 20} 21