Annotations.php 671 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Gedmo\Translatable\Mapping;
  3. use Doctrine\Common\Annotations\Annotation;
  4. /**
  5. * These are Translatable extension annotations which should be used
  6. * on for specific record translation on any Entity
  7. *
  8. * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  9. * @package Gedmo.Translatable.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 Translatable extends Annotation {}
  15. final class Locale extends Annotation {}
  16. final class Language extends Annotation {}
  17. final class TranslationEntity extends Annotation {
  18. public $class;
  19. }