mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 12:06:55 -04:00
12 lines
147 B
PHP
12 lines
147 B
PHP
|
|
<?php
|
||
|
|
enum DaysOfWeek: int
|
||
|
|
{
|
||
|
|
case Sunday = 0;
|
||
|
|
case Monday = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
class Foo {
|
||
|
|
public int $id;
|
||
|
|
public string $brand;
|
||
|
|
}
|
||
|
|
?>
|