FinalClasses.php 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. /**
  4. * @final since version 3.3.
  5. */
  6. class FinalClass1
  7. {
  8. // simple comment
  9. }
  10. /**
  11. * @final
  12. */
  13. class FinalClass2
  14. {
  15. // no comment
  16. }
  17. /**
  18. * @final comment with @@@ and ***
  19. *
  20. * @author John Doe
  21. */
  22. class FinalClass3
  23. {
  24. // with comment and a tag after
  25. }
  26. /**
  27. * @final
  28. * @author John Doe
  29. */
  30. class FinalClass4
  31. {
  32. // without comment and a tag after
  33. }
  34. /**
  35. * @author John Doe
  36. *
  37. *
  38. * @final multiline
  39. * comment
  40. */
  41. class FinalClass5
  42. {
  43. // with comment and a tag before
  44. }
  45. /**
  46. * @author John Doe
  47. *
  48. * @final
  49. */
  50. class FinalClass6
  51. {
  52. // without comment and a tag before
  53. }
  54. /**
  55. * @author John Doe
  56. *
  57. * @final another
  58. *
  59. * multiline comment...
  60. *
  61. * @return string
  62. */
  63. class FinalClass7
  64. {
  65. // with comment and a tag before and after
  66. }
  67. /**
  68. * @author John Doe
  69. * @final
  70. * @return string
  71. */
  72. class FinalClass8
  73. {
  74. // without comment and a tag before and after
  75. }