SingleCommentedFile.php 490 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Gearman Bundle for Symfony2
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * Feel free to edit as you please, and have fun.
  9. *
  10. * @author Marc Morera <yuhu@mmoreram.com>
  11. */
  12. /**
  13. * Some comments
  14. */
  15. // Single comment
  16. /* Some other comments */
  17. /**
  18. * Some phpdoc
  19. */
  20. namespace Mmoreram\GearmanBundle\Tests\Service\Mocks;
  21. /**
  22. * Some class comments
  23. */
  24. class SingleCommentedFile
  25. {
  26. }