| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * File header here
- *
- * @author Ralph Schindler <ralph.schindler@zend.com>
- */
- /**
- * class docblock
- *
- * @package Zend_Reflection_TestSampleSingleClass
- */
- class Zend_Reflection_TestSampleSingleClass
- {
- /**
- * Enter description here...
- *
- * @return bool
- */
- public function someMethod()
- {
- /* test test */
- }
- }
|