php-parser icon indicating copy to clipboard operation
php-parser copied to clipboard

:herb: NodeJS PHP Parser - extract AST or tokens

Results 62 php-parser issues
Sort by recently updated
recently updated
newest added
trafficstars

RFC - https://wiki.php.net/rfc/asymmetric-visibility-v2 - [ ] classic ```php class Foo { public private(set) string $bar = 'baz'; } ``` - [ ] property promotion ```php class Foo { public function...

- [x] get - simple ```php public string $email { get => 'mailto:' . $this->email; } ``` - [x] get - block ```php get { 'mailto:' . $this->email; } ```...