1234567891011121314151617 |
- <?php
- namespace JMS\SerializerBundle\Annotation;
- /**
- * This annotation can be declared on methods which should be called
- * before the Serialization process.
- *
- * These methods do not need to be public, and should do any clean-up, or
- * preparation of the object that is necessary.
- *
- * @Annotation
- * @author Johannes M. Schmitt <schmittjoh@gmail.com>
- */
- final class PreSerialize
- {
- }
|