TestSampleSingleClass.php 369 B

1234567891011121314151617181920212223242526272829
  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_TestSampleSingleClass
  11. */
  12. class Zend_Reflection_TestSampleSingleClass
  13. {
  14. /**
  15. * Enter description here...
  16. *
  17. * @return bool
  18. */
  19. public function someMethod()
  20. {
  21. /* test test */
  22. }
  23. }