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

Use PHP 8.1 when testing AmbiguousConstantInheritance.

This commit is contained in:
AndrolGenhald 2022-01-25 15:49:09 -06:00
parent 0b81f46bb1
commit b68c6116d8
2 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,6 @@ interface Foo
interface Bar
{
/**
* @psalm-suppress OverriddenInterfaceConstant
* @var non-empty-string
*/
public const CONSTANT='bar';

View File

@ -319,6 +319,7 @@ class DocumentationTest extends TestCase
$ignored_issues = ['UnusedVariable'];
break;
case 'AmbiguousConstantInheritance':
case 'InvalidEnumBackingType':
case 'InvalidEnumCaseValue':
case 'DuplicateEnumCase':