12345678910111213141516 |
- <?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.
- *
- * @author Johannes M. Schmitt <schmittjoh@gmail.com>
- */
- class PreSerialize
- {
- }
|