1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/docs/running_psalm/issues/DuplicateConstant.md
2021-11-11 00:44:17 +02:00

272 B
Raw Blame History

DuplicateConstant

Emitted when a constant is defined twice in a single class or when there's a clash between a constant and an enum case.

<?php
class C {
    public const A = 1;
    public const A = 2;
}

Why this is bad

The above code wont compile.