Annotations.php 629 B

123456789101112131415161718192021
  1. <?php
  2. namespace Gedmo\Tree\Mapping;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * These are Tree extension annotations which should be used
  6. * on proper Tree Node Entity to activate the Tree listener
  7. *
  8. * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  9. * @package Gedmo.Tree.Mapping
  10. * @subpackage Annotations
  11. * @link http://www.gediminasm.org
  12. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  13. */
  14. final class TreeLeft extends Annotation {}
  15. final class TreeRight extends Annotation {}
  16. final class TreeParent extends Annotation {}
  17. final class TreeLevel extends Annotation {}