mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
18 lines
256 B
Markdown
18 lines
256 B
Markdown
|
# OverriddenInterfaceConstant
|
||
|
|
||
|
Emitted when a constant declared on an interface is overridden by a child (illegal in PHP < 8.1).
|
||
|
|
||
|
```php
|
||
|
<?php
|
||
|
|
||
|
interface Foo
|
||
|
{
|
||
|
public const BAR='baz';
|
||
|
}
|
||
|
|
||
|
interface Bar extends Foo
|
||
|
{
|
||
|
public const BAR='foobar';
|
||
|
}
|
||
|
```
|