mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
* chore(php): update maintainers * feat(php): update php rules, highlight imported functions/consts * feat(php): indent inside property hooks * chore: update php and php_only revision
13 lines
178 B
PHP
13 lines
178 B
PHP
<?php
|
|
|
|
class Foo
|
|
{
|
|
private string $_baz;
|
|
|
|
public string $baz {
|
|
&get => $this->_baz;
|
|
set {
|
|
$this->_baz = strtoupper($value);
|
|
}
|
|
}
|
|
}
|