ReferenceIntegrity.php 479B

1234567891011121314151617181920
  1. <?php
  2. namespace Gedmo\Mapping\Annotation;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * ReferenceIntegrity annotation for ReferenceIntegrity behavioral extension
  6. *
  7. * @Annotation
  8. * @Target("PROPERTY")
  9. *
  10. * @author Evert Harmeling <evert.harmeling@freshheads.com>
  11. * @package Gedmo.Mapping.Annotation
  12. * @subpackage ReferenceIntegrity
  13. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  14. */
  15. final class ReferenceIntegrity extends Annotation
  16. {}