ClassWithAtInDescriptionAndAnnotation.php 707 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\AnnotationTargetPropertyMethod;
  4. class ClassWithAtInDescriptionAndAnnotation
  5. {
  6. /**
  7. * Lala
  8. *
  9. * {
  10. * "email": "foo@example.com",
  11. * "email2": "123@example.com",
  12. * "email3": "@example.com"
  13. * }
  14. *
  15. * @AnnotationTargetPropertyMethod("Bar")
  16. * @var mixed
  17. */
  18. public $foo;
  19. /**
  20. * Lala
  21. *
  22. * {
  23. * "email": "foo@example.com",
  24. * "email2": "123@example.com",
  25. * "email3": "@example.com"
  26. * }
  27. *
  28. * @AnnotationTargetPropertyMethod("Bar")
  29. * @var mixed
  30. */
  31. public $bar;
  32. }