Changeset 27

Show
Ignore:
Timestamp:
02/21/06 06:28:49 (3 years ago)
Author:
knut
Message:

ensure that autoload is never called from IntrospectionHelper (Ticket #1)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.2/classes/phing/IntrospectionHelper.php

    r1 r27  
    195195                                 
    196196                    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)) { 
    198198                        $this->nestedTypes[$name] = $matches[1]; 
    199199                    } else {