NoFallback.php 276 B

123456789101112131415161718
  1. <?php
  2. namespace Gedmo\Mapping\Annotation;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * NoFallback annotation for Timestampable behavioral extension
  6. *
  7. * @Annotation
  8. * @Target("PROPERTY")
  9. *
  10. * @author Dmitry Pikhno
  11. */
  12. final class NoFallback extends Annotation
  13. {
  14. }