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