mirror of
https://github.com/danog/psalm.git
synced 2024-11-30 04:39:00 +01:00
parent
3e2d998cfe
commit
d64c49be92
@ -311,14 +311,9 @@ class Populator
|
||||
$declaring_method_storage = $declaring_class_storage->methods[$declaring_method_name];
|
||||
|
||||
if (($declaring_method_storage->has_docblock_param_types
|
||||
|| $declaring_method_storage->return_type
|
||||
!== $declaring_method_storage->signature_return_type)
|
||||
|| $declaring_method_storage->has_docblock_return_type)
|
||||
&& !$method_storage->has_docblock_param_types
|
||||
&& $method_storage->return_type === $method_storage->signature_return_type
|
||||
&& (!$declaring_method_storage->signature_return_type
|
||||
|| ($method_storage->signature_return_type
|
||||
&& $method_storage->signature_return_type->getId()
|
||||
=== $declaring_method_storage->signature_return_type->getId()))
|
||||
&& !$method_storage->has_docblock_return_type
|
||||
&& $method_storage->inherited_return_type !== null
|
||||
) {
|
||||
if (!isset($storage->documenting_method_ids[$method_name])
|
||||
|
@ -868,6 +868,10 @@ class FunctionLikeDocblockScanner
|
||||
|
||||
$storage->return_type->setFromDocblock();
|
||||
|
||||
if ($storage instanceof MethodStorage) {
|
||||
$storage->has_docblock_return_type = true;
|
||||
}
|
||||
|
||||
if ($storage->signature_return_type) {
|
||||
$all_typehint_types_match = true;
|
||||
$signature_return_atomic_types = $storage->signature_return_type->getAtomicTypes();
|
||||
@ -882,6 +886,10 @@ class FunctionLikeDocblockScanner
|
||||
|
||||
if ($all_typehint_types_match) {
|
||||
$storage->return_type->from_docblock = false;
|
||||
|
||||
if ($storage instanceof MethodStorage) {
|
||||
$storage->has_docblock_return_type = true;
|
||||
}
|
||||
}
|
||||
|
||||
if ($storage->signature_return_type->isNullable()
|
||||
|
@ -60,6 +60,11 @@ class MethodStorage extends FunctionLikeStorage
|
||||
*/
|
||||
public $has_docblock_param_types = false;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
public $has_docblock_return_type = false;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
|
@ -847,6 +847,28 @@ class MethodSignatureTest extends TestCase
|
||||
public function foo(): void {}
|
||||
}'
|
||||
],
|
||||
'inheritParamTypeWhenSignatureReturnTypeChanged' => [
|
||||
'<?php
|
||||
class A {
|
||||
public function __construct(string $s) {}
|
||||
}
|
||||
|
||||
class AChild extends A {}
|
||||
|
||||
interface B {
|
||||
/** @param string $data */
|
||||
public function create($data): A;
|
||||
}
|
||||
|
||||
class C implements B {
|
||||
public function create($data): AChild {
|
||||
return new AChild($data);
|
||||
}
|
||||
}',
|
||||
[],
|
||||
[],
|
||||
'7.4'
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -4222,6 +4222,24 @@ class ClassTemplateExtendsTest extends TestCase
|
||||
public function at($k) { /** @var Tv */ return 1; }
|
||||
}'
|
||||
],
|
||||
'inheritSubstitutedParamFromInterface' => [
|
||||
'<?php
|
||||
/** @psalm-template T */
|
||||
interface BuilderInterface {
|
||||
/** @psalm-param T $data */
|
||||
public function create($data): Exception;
|
||||
}
|
||||
|
||||
/** @implements BuilderInterface<string> */
|
||||
class CovariantUserBuilder implements BuilderInterface {
|
||||
public function create($data): RuntimeException {
|
||||
return new RuntimeException($data);
|
||||
}
|
||||
}',
|
||||
[],
|
||||
[],
|
||||
'7.4'
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
@ -5301,26 +5319,6 @@ class ClassTemplateExtendsTest extends TestCase
|
||||
}',
|
||||
'error_message' => 'ArgumentTypeCoercion'
|
||||
],
|
||||
'inheritSubstitutedParamFromInterface' => [
|
||||
'<?php
|
||||
/** @psalm-template T */
|
||||
interface BuilderInterface {
|
||||
/** @psalm-param T $data */
|
||||
public function create($data): Exception;
|
||||
}
|
||||
|
||||
/** @implements BuilderInterface<string> */
|
||||
class CovariantUserBuilder implements BuilderInterface {
|
||||
public function create($data): RuntimeException {
|
||||
/** @psalm-suppress MixedArgument */
|
||||
return new RuntimeException($data);
|
||||
}
|
||||
}',
|
||||
'error_message' => 'MissingParamType',
|
||||
[],
|
||||
false,
|
||||
'7.4'
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user