1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Annotation; 6 7/** 8 * This annotation can be declared on methods which should be called 9 * before the Serialization process. 10 * 11 * These methods do not need to be public, and should do any clean-up, or 12 * preparation of the object that is necessary. 13 * 14 * @Annotation 15 * @Target("METHOD") 16 * 17 * @author Johannes M. Schmitt <schmittjoh@gmail.com> 18 */ 19final class PreSerialize 20{ 21} 22