FinalClasses.php 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. *
  29. * @author John Doe
  30. */
  31. class FinalClass4
  32. {
  33. // without comment and a tag after
  34. }
  35. /**
  36. * @author John Doe
  37. *
  38. *
  39. * @final multiline
  40. * comment
  41. */
  42. class FinalClass5
  43. {
  44. // with comment and a tag before
  45. }
  46. /**
  47. * @author John Doe
  48. *
  49. * @final
  50. */
  51. class FinalClass6
  52. {
  53. // without comment and a tag before
  54. }
  55. /**
  56. * @author John Doe
  57. *
  58. * @final another
  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. *
  71. * @return string
  72. */
  73. class FinalClass8
  74. {
  75. // without comment and a tag before and after
  76. }