SingleCommentedFile.php 247 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Some comments
  4. */
  5. // Single comment
  6. /* Some other comments */
  7. /**
  8. * Some phpdoc
  9. *
  10. * @author Marc Morera
  11. */
  12. namespace Mmoreram\GearmanBundle\Tests\Service\Mocks;
  13. /**
  14. * Some class comments
  15. */
  16. class SingleCommentedFile
  17. {
  18. }