| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * File header here
- *
- * @author Ralph Schindler <ralph.schindler@zend.com>
- */
- /**
- * class docblock
- *
- * @package Zend_Reflection_TestClassWithCodeInMethod
- */
- class Zend_Reflection_TestClassWithCodeInMethod
- {
- /**
- * Enter description here...
- *
- * @return bool
- */
- public function someMethod()
- {
- /* test test */
- $foo = 'bar';
- }
- }
|