rouge icon indicating copy to clipboard operation
rouge copied to clipboard

php: Support typed class constants

Open nsfisis opened this issue 1 month ago • 0 comments

Part of https://github.com/rouge-ruby/rouge/issues/2169

Support typed class constants introduced since PHP 8.3.

https://wiki.php.net/rfc/typed_class_constants

class C {
    const bool CONST_1 = true;
    public const int CONST_2 = 1;
    protected const float CONST_3 = 1.0;
    private const string CONST_4 = "foo";
    const ?array CONST_5 = [];
}

nsfisis avatar Nov 03 '25 20:11 nsfisis