mirror of
https://github.com/danog/parser.git
synced 2024-11-30 04:29:13 +01:00
9 lines
81 B
PHP
9 lines
81 B
PHP
|
<?php
|
||
|
|
||
|
namespace A\B\C\D\E;
|
||
|
|
||
|
enum Foo: int {
|
||
|
case Bar = 1;
|
||
|
case Baz;
|
||
|
}
|