| 123456789101112131415161718192021 |
- <?php
- function zend_reflection_function1() {
- return 'foo';
- }
- /**
- * Zend Function Two
- *
- * This is the long description for funciton two
- *
- * @param unknown_type $one
- * @param unknown_type $two
- * @return string
- */
- function zend_reflection_function2($one, $two = 'two') {
-
- return 'blah';
- }
|