1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Fix thing that doesn’t work quite right

This commit is contained in:
Matthew Brown 2019-01-05 17:10:29 -05:00
parent 4d6031b39b
commit e3f2cee2d6
2 changed files with 8 additions and 39 deletions

View File

@ -608,33 +608,14 @@ class FunctionAnalyzer extends FunctionLikeAnalyzer
return self::getFilterVar($call_args);
case 'get_parent_class':
$codebase = $statements_analyzer->getCodebase();
$first_arg = $call_args[0]->value;
if (isset($first_arg->inferredType)) {
$class_strings = [];
foreach ($first_arg->inferredType->getTypes() as $atomic_type) {
if ($atomic_type instanceof Type\Atomic\TNamedObject
&& $codebase->classExists($atomic_type->value)
) {
$classlike_storage = $codebase->classlike_storage_provider->get($atomic_type->value);
if ($classlike_storage->parent_classes) {
$class_strings[] = new Type\Atomic\TClassString(
array_values($classlike_storage->parent_classes)[0]
);
}
}
}
if ($class_strings) {
return \Psalm\Internal\Type\TypeCombination::combineTypes(
$class_strings
);
}
}
// this is unreliable, as it's hard to know exactly what's wanted - attempted this in
// https://github.com/vimeo/psalm/commit/355ed831e1c69c96bbf9bf2654ef64786cbe9fd7
// but caused problems where it didnt know exactly what level of child we
// were receiving.
//
// Really this should only work on instances we've created with new Foo(),
// but that requires more work
break;
}
}

View File

@ -344,18 +344,6 @@ class ClassStringTest extends TestCase
return get_class($a);
}',
],
'returnGetParentClassClassStringParameterizedWithArg' => [
'<?php
class A {}
class B extends A {}
/**
* @return class-string<A> $s
*/
function foo(B $b) : string {
return get_parent_class($b);
}',
],
'returnGetParentClassClassStringParameterizedNoArg' => [
'<?php
class A {}