Changeset 4700 for branches/0.11/lib/Doctrine/Node.php
- Timestamp:
- 07/21/08 22:28:48 (6 months ago)
- Files:
-
- 1 modified
-
branches/0.11/lib/Doctrine/Node.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/Node.php
r4460 r4700 81 81 while ( ! $subclasses = $table->getOption('subclasses')) { 82 82 $class = get_parent_class($class); 83 $reflectionClass = new ReflectionClass($class); 84 if ($reflectionClass->isAbstract()) { 85 continue; 86 } 83 87 if ($class == 'Doctrine_Record') { 84 88 throw new Doctrine_Node_Exception("No subclasses specified. You are "