TreePathHash.php 456B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Gedmo\Mapping\Annotation;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * TreePath annotation for Tree behavioral extension
  6. *
  7. * @Annotation
  8. * @Target("PROPERTY")
  9. *
  10. * @author <rocco@roccosportal.com>
  11. * @package Gedmo.Mapping.Annotation
  12. * @subpackage TreePathHash
  13. * @link http://www.gediminasm.org
  14. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  15. */
  16. final class TreePathHash extends Annotation
  17. {
  18. }