|
@@ 180-182 (lines=3) @@
|
| 177 |
|
foreach ($reflectionRelatedClassElements as $parentName => $parentReflection) { |
| 178 |
|
/** @var TokenReflection\ReflectionClass $parentReflection */ |
| 179 |
|
if ($parentReflection->isInternal()) { |
| 180 |
|
if (! isset($this->allClasses[self::INTERNAL_CLASSES][$parentName])) { |
| 181 |
|
$this->allClasses[self::INTERNAL_CLASSES][$parentName] = $parentReflection; |
| 182 |
|
} |
| 183 |
|
} elseif (! $parentReflection->isTokenized()) { |
| 184 |
|
if (! isset($this->allClasses[self::NONEXISTENT_CLASSES][$parentName])) { |
| 185 |
|
$this->allClasses[self::NONEXISTENT_CLASSES][$parentName] = $parentReflection; |
|
@@ 183-187 (lines=5) @@
|
| 180 |
|
if (! isset($this->allClasses[self::INTERNAL_CLASSES][$parentName])) { |
| 181 |
|
$this->allClasses[self::INTERNAL_CLASSES][$parentName] = $parentReflection; |
| 182 |
|
} |
| 183 |
|
} elseif (! $parentReflection->isTokenized()) { |
| 184 |
|
if (! isset($this->allClasses[self::NONEXISTENT_CLASSES][$parentName])) { |
| 185 |
|
$this->allClasses[self::NONEXISTENT_CLASSES][$parentName] = $parentReflection; |
| 186 |
|
} |
| 187 |
|
} |
| 188 |
|
} |
| 189 |
|
} |
| 190 |
|
|