Changeset 27
- Timestamp:
- 02/21/06 06:28:49 (3 years ago)
- Files:
-
- branches/2.2/classes/phing/IntrospectionHelper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/classes/phing/IntrospectionHelper.php
r1 r27 195 195 196 196 preg_match('/@return[\s]+([\w]+)/', $method->getDocComment(), $matches); 197 if (!empty($matches[1]) && class_exists($matches[1] )) {197 if (!empty($matches[1]) && class_exists($matches[1], false)) { 198 198 $this->nestedTypes[$name] = $matches[1]; 199 199 } else {
