TreePath.php 710B

1234567891011121314151617181920212223242526272829303132
  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 Gustavo Falco <comfortablynumb84@gmail.com>
  11. * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  12. * @author <rocco@roccosportal.com>
  13. * @package Gedmo.Mapping.Annotation
  14. * @subpackage TreePath
  15. * @link http://www.gediminasm.org
  16. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  17. */
  18. final class TreePath extends Annotation
  19. {
  20. public $separator = ',';
  21. public $appendId = null;
  22. public $startsWithSeparator = false;
  23. public $endsWithSeparator = true;
  24. }