FinalClasses.php 962 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace Symfony\Component\ErrorHandler\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. *
  29. * @author John Doe
  30. */
  31. class FinalClass4
  32. {
  33. // without comment and a tag after
  34. }
  35. /**
  36. * @author John Doe
  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. * multiline comment...
  59. *
  60. * @return string
  61. */
  62. class FinalClass7
  63. {
  64. // with comment and a tag before and after
  65. }
  66. /**
  67. * @author John Doe
  68. * @final
  69. *
  70. * @return string
  71. */
  72. class FinalClass8
  73. {
  74. // without comment and a tag before and after
  75. }