Events.php 308 B

123456789101112
  1. <?php
  2. namespace JMS\SerializerBundle\Serializer\EventDispatcher;
  3. abstract class Events
  4. {
  5. const PRE_SERIALIZE = 'serializer.pre_serialize';
  6. const POST_SERIALIZE = 'serializer.post_serialize';
  7. const POST_DESERIALIZE = 'serializer.post_deserialize';
  8. private final function __construct() { }
  9. }