1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/docs/running_psalm/issues/InvalidConstantAssignmentValue.md

210 B

InvalidConstantAssignmentValue

Emitted when attempting to assign a value to a class constant that cannot contain that type.

<?php

class Foo {
    /** @var int */
    public const BAR = "bar";
}