InvalidConstantAssignmentValue
January 22, 2022 ยท View on GitHub
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";
}
January 22, 2022 ยท View on GitHub
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";
}