SortablePosition.php 466 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Gedmo\Mapping\Annotation;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * Position annotation for Sortable extension
  6. *
  7. * @author Lukas Botsch <lukas.botsch@gmail.com>
  8. * @package Gedmo.Mapping.Annotation
  9. * @subpackage SortableGroup
  10. * @link http://www.gediminasm.org
  11. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  12. *
  13. * @Annotation
  14. * @Target("PROPERTY")
  15. */
  16. final class SortablePosition extends Annotation
  17. {
  18. }