per-coding-style icon indicating copy to clipboard operation
per-coding-style copied to clipboard

New PHP 8.4 Syntax: Asymmetric visibility

Open KorvinSzanto opened this issue 5 months ago • 1 comments

https://wiki.php.net/rfc/asymmetric-visibility-v2

class Foo
{
    PRIVATE(set) string $bar1 = '';
    public private(SET) string $bar2 = '';
    private(set) public string $bar3 = '';

    public function __construct(
        public protected(SET) string $bar4 = ''
    ) {}
}

See this working here: https://3v4l.org/JDXuq/rfc#vgit.master_jit

KorvinSzanto avatar Sep 11 '24 16:09 KorvinSzanto