NamespaceAndClassCommentedOut.php 614 B

12345678910111213141516171819202122
  1. <?php
  2. // namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures\Foo {
  4. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation\Secure;
  5. // class NamespaceAndClassCommentedOut {}
  6. }
  7. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures {
  8. // class NamespaceAndClassCommentedOut {}
  9. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation\Route;
  10. // namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  11. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation\Template;
  12. class NamespaceAndClassCommentedOut
  13. {
  14. }
  15. }