12345678910111213141516171819202122232425 |
- <?php
- /**
- * Some comments
- */
- // Single comment
- /* Some other comments */
- /**
- * Some phpdoc
- *
- * @author Marc Morera
- */
- namespace Mmoreram\GearmanBundle\Tests\Service\Mocks;
- /**
- * Some class comments
- */
- class SingleCommentedFile
- {
- }
|