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

Don't emit MissingOverrideAttribute for implicit Stringable implementations

This commit is contained in:
Evan Shaw 2024-03-26 08:31:33 +13:00
parent fb7278ea3e
commit 6269b804a0
2 changed files with 28 additions and 0 deletions

View File

@ -1996,6 +1996,8 @@ abstract class FunctionLikeAnalyzer extends SourceAnalyzer
&& $codebase->config->ensure_override_attribute
&& $overridden_method_ids
&& $storage->cased_name !== '__construct'
&& ($storage->cased_name !== '__toString'
|| isset($appearing_class_storage->direct_class_interfaces['stringable']))
) {
IssueBuffer::maybeAdd(
new MissingOverrideAttribute(

View File

@ -85,6 +85,19 @@ class OverrideTest extends TestCase
'ignored_issues' => [],
'php_version' => '8.3',
],
'ignoreImplicitStringable' => [
'code' => '
<?php
class A {
public function __toString(): string {
return "";
}
}
',
'assertions' => [],
'ignored_issues' => [],
'php_version' => '8.3',
],
];
}
@ -190,6 +203,19 @@ class OverrideTest extends TestCase
'error_levels' => [],
'php_version' => '8.3',
],
'explicitStringable' => [
'code' => '
<?php
class A implements Stringable {
public function __toString(): string {
return "";
}
}
',
'error_message' => 'MissingOverrideAttribute',
'error_levels' => [],
'php_version' => '8.3',
],
];
}
}