nodeNameResolver = $nodeNameResolver; $this->makePropertyTypedGuard = $makePropertyTypedGuard; } public function isLegal(Property $property, ClassReflection $classReflection) : bool { if (!$this->makePropertyTypedGuard->isLegal($property, $classReflection)) { return \false; } $propertyName = $this->nodeNameResolver->getName($property); foreach ($classReflection->getParents() as $parentClassReflection) { $nativeReflectionClass = $parentClassReflection->getNativeReflection(); if (!$nativeReflectionClass->hasProperty($propertyName)) { continue; } $parentPropertyReflection = $nativeReflectionClass->getProperty($propertyName); // empty type override is not allowed return (\method_exists($parentPropertyReflection, 'getType') ? $parentPropertyReflection->getType() : null) !== null; } return \true; } }