TestClassWithCodeInMethod.php 399 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * File header here
  4. *
  5. * @author Ralph Schindler <ralph.schindler@zend.com>
  6. */
  7. /**
  8. * class docblock
  9. *
  10. * @package Zend_Reflection_TestClassWithCodeInMethod
  11. */
  12. class Zend_Reflection_TestClassWithCodeInMethod
  13. {
  14. /**
  15. * Enter description here...
  16. *
  17. * @return bool
  18. */
  19. public function someMethod()
  20. {
  21. /* test test */
  22. $foo = 'bar';
  23. }
  24. }